I have three lists. I'd like to look up the content of two of them based on picking an item (GTIN8 code) in the first list:
code = [12345670,12234561,12334568,12344567,12345564,12345663]
name = ['Milk (1 Pints)','Dognuts 6PK','Cookies 2PK','Apples(1KG)','Strawberries(500g)','Bananas(500g)']
price = [0.25,0.50,0.50,1.00,1.25,0.65]
Code= int(input('enter code: '))
How do I do that?