So I have this list:
list1 = [['Car1', 'hyundai', 'blue', 'BF20E1'],['Car2', 'toyota', 'black', 'FD47GH']]
And I have this program:
choice = input('What car you want? ')
And now I want the program to search through the list and find it and print out the details of that certain car. E.g numberplate, colour, type. Does anyone know how to do this? I have been trying with for loops but it doesn't work.