0
Tuples test case 5
I'm trying to do the Tuples code challenge, but whatever I try, i can't pass test case 5. Can anyone help? Here is the code I'm using: contacts = [ ('James', 42), ('Amy', 24), ('John', 31), ('Amanda', 63), ('Bob', 18) ] name = input() for x in contacts: if name in x: print(str(x[0]) + " is " + str(x[1])) break else: print("Not found")
5 Answers
+ 3
Check the task description again: We need to output "Not Found" with capital F. Does it work for you?
+ 2
Please tag the relevant programming language and show your code.
+ 2
Oh my god đ€Šđ»ââïž
Thank you Lisa ! I can't believe it was that simple.
+ 1
Hi! Can you please save your code as code bit and link it here? That way we can see what's wrong and help you :)