Last active
November 27, 2021 07:24
-
-
Save agusrichard/5f6b1bd4b5632c180537333b027df755 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
product = { | |
'price': 2000, # remove this to run the exception handling | |
'name': 'Burger', | |
'description': 'The tastiest burger ever' | |
} | |
try: | |
print(f"{product['name']} costs {product['price']}") | |
except: | |
print('There is no product\'s name and price') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment