Created
November 26, 2021 15:34
-
-
Save agusrichard/1af49e7bd08a785979156b3113e987a3 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 = { | |
'name': 'Burger', | |
'description': 'The tastiest burger ever' | |
} | |
try: | |
print(f"{product['name']} costs {product['price']}") | |
except KeyError: | |
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