Question: Python question Rewrite the following lines of code without using a try except statement. phoneBook = {Bob: 250-828-1000, Jane: 250-828-2000} name = input(Enter a name:
Python question
Rewrite the following lines of code without using a try except statement. phoneBook = {"Bob": "250-828-1000", "Jane": "250-828-2000"} name = input("Enter a name: ") try: print(phoneBook[name]) except KeyError: print("Name not found.")
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
