Can’t get desired output | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Can’t get desired output

The challenge is to get output of “name is age” ie. “John is 31”, and if name not in list, output must be “Not found”. I can get “name is age” using many different methods, but can’t output “Not found”. The .get method gives me both outputs, but doesn’t print “name is age”. contacts = [ ('James', 42), ('Amy', 24), ('John', 31), ('Amanda', 63), ('Bob', 18) ] contacts1 = dict(contacts) name = input('') result = (contacts1[name]) if name in contacts1: age = result print(name + " is", age)

9th Feb 2022, 1:41 AM
Gina
17 Answers
+ 3
Look into the dictionary get() method, it (by default) returns a NoneType where it can't find any item identified by a given key. So you can use it with an `if` conditional. result = contacts1.get( name ) if not result: # get() returned None print( "Not found" ) else: print( name + " is " + str( result ) ) Reference: https://realpython.com/JUMP_LINK__&&__python__&&__JUMP_LINK-dicts/
9th Feb 2022, 2:47 AM
Ipang
+ 2
Hi Gina! You may find try-except statement useful in this case. You can use this code inside try statement and print "Not found" in except part. try: blah blah... except KeyError: print("Not found")
9th Feb 2022, 1:57 AM
Python Learner
Python Learner - avatar
+ 2
Gina you have to convert your contacts list to a dictionary inside the try block for except to catch errors. So, you need to start the try part with contacts1 and so on.
9th Feb 2022, 3:03 AM
Python Learner
Python Learner - avatar
+ 2
JUMP_LINK__&&__Python__&&__JUMP_LINK Learner Thank you, I am going to go and give it another go, Ipang gave me a solution using ‘if not’ and it worked, which is awesome, but I am now wanting to see the try: method work also, so Im loving the learning right now, you both are so wonderful, thank you 😃
9th Feb 2022, 3:15 AM
Gina
+ 2
Gina, Glad it made sense 😁 About `if` and `if not`, we can use either one, it depends on what we want to check. I used `if not` here simply because I wanted to check whether get() method gave me a valid result, or a NoneType.
9th Feb 2022, 3:16 AM
Ipang
+ 2
Gina, Just keep learning & coding, you'll get it all figured out 👍
9th Feb 2022, 3:45 AM
Ipang
+ 1
Thank you JUMP_LINK__&&__Python__&&__JUMP_LINK Learner I did go down the path of try and except, but couldnt get the function to work, at that stage I was just trying anything, gave up and came on here for guidance. I am going to go and try, try and except again 🙂
9th Feb 2022, 2:14 AM
Gina
+ 1
Ipang I did try the ‘if not’ method, but I can instantly see, and understand why I was getting an error, I needed to drop the ‘if’ statement and make the ‘if not’ the first argument, and the correct result as the second argument. Doing it the other way round was creating errors. Thank you so much, it’s simple, clean and gets the desired output, awesome 😁 Also thank you for the resources for further study.
9th Feb 2022, 3:08 AM
Gina
+ 1
Ipang when I used the get() method, I got the correct answer, but couldnt get it to print the desired output ie. “Bob is 18”, so i was pleased that i got the get() method to work, but I couldnt get the correct print statement. Im learning heaps today and loving it …
9th Feb 2022, 3:42 AM
Gina
+ 1
contact_details = dict(contacts) name = input() result = contact_details.get(name) if not result: print("Not Found") else: print("{0} is {1}".format(name, result))
9th Feb 2022, 5:23 AM
Dilji
Dilji - avatar
+ 1
Gina, You have to make a small change in your logic to avoid this key error, Problem: in the Age variable, you have to do like this. *********** if name in contact_details: age = contact_details[name] print(name + " is", age) else: print("Not Found") *************
9th Feb 2022, 5:29 AM
Dilji
Dilji - avatar
+ 1
The easiest way to do this is to create a function and return `Not Found` or `name is age` based on the check input() condition. E.g. contacts = [ ('James', 42), ('Amy', 24), ('John', 31), ('Amanda', 63), ('Bob', 18) ] def desired(contacts: [()], check: str) -> str: name = dict(contacts).get(check) if not name: return "Not Found" return "%s is %d" % (check, name) print(desired(contacts, input()))
9th Feb 2022, 7:21 PM
Xander Tedder
+ 1
Use if else function if name in contacts1: age=result print(name + "is", age) else: print("Not Found")
10th Feb 2022, 1:02 AM
okonkwo calistus
okonkwo calistus - avatar
+ 1
contact_details = dict(contacts) name = input() result = contact_details.get(name) if not result: print("Not Found") else: print("{0} is {1}".format(name, result))
10th Feb 2022, 8:00 PM
SANA SIPOU
SANA SIPOU - avatar
+ 1
Hello everyone, you got it almost, well done so far! Just try this, you can do it very simple: if name in contacts1: result = contacts1[name] Print(name + “ is “ + str(result)) else: Print(“Not found“) Please look at the position where i assigned the value contacts1[name] to the variable result. If you do it before the if statement it leads to error, because you dont know yet if name is in contacts1
11th Feb 2022, 2:10 PM
Ferdaws Kukcha
Ferdaws Kukcha - avatar
+ 1
Hi Gina, with a try-except block you don‘t use the if condition: try: result = contacts1[name] print(name + “ is “ + str(result)) except KeyError: print(“Not found“) Because you dont check at all if name is in the keys of contacts1. If its in the keys of contacts1 the try block is executed and if its not the except block is executed, because the except block catches the error which is called KeyError.
11th Feb 2022, 2:29 PM
Ferdaws Kukcha
Ferdaws Kukcha - avatar
0
Hi JUMP_LINK__&&__Python__&&__JUMP_LINK Learner, when I use try: this is the message that I get: try: if name in contacts1: age = result print(name + " is", age) except KeyError: print("Not found") Traceback (most recent call last): File "file0.py", line 12, in <module> result = (contacts1[name]) KeyError: 'Bill'
9th Feb 2022, 2:43 AM
Gina