print("**PhoneBook**")
phonedict = [
{"name":"Harry", "number":"054213435"},
{"name":"Larry", "number":"12345676"},
{"name":"Harvey", "number":"10101213"},
{"name":"Ronaldo", "number":"121314121"},
{"name":'Laith', "number":"0506203880"}
]
contact = input("Which Contact you want: ")
for contact in phonedict:
print(contact['name'])
yea soo i do that it prints out the name name multiple time i tryed switching it around but that didnt help because it printed out the whole list
i tried impleminting the dict function with for loop but it didnt work i was expecting that it will as the user which contact you want after the contact name is inputed i expecteded to output the number