I need to compare a list of integers values with a single row in a CVS file in order to find which line matches that values.
'''
firstScore = 90
secondScore = 80
thirdScore = 75
list = [firstScore, secondScore, thirdScore]
'''
and the csv data is:
Name,first,second,third
Paul,40,60,30
Kevin,90,80,75
Jenny,80,75,90
The actual output should be the name which matches the 3 values: Kevin
.