Created
November 26, 2021 15:04
-
-
Save agusrichard/7ff205208728ef352b8107382e92b10f 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, | |
'name': 'Burger', | |
'description': 'The tastiest burger ever' | |
} | |
if 'name' in product and 'price' in product: | |
print(f"{product['name']} costs {product['price']}") | |
else: | |
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