How to search through arrays
name=input(“please enter the name tou are loooking for”)
for record in scores:
for item in record:
if item == name:
print (record)
What do arrays start from
0
How to select certain item from array
Use square brackets
Print(scores[0])
Prints the first score