Created
September 29, 2019 07:50
-
-
Save vanlocAI1996/c16b0f406fbd5b87e9520f5c5417245d 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
person = { | |
'name': 'Trần Văn Lộc', | |
'address': 'Đà Nẵng', | |
'age': 23, | |
} | |
# check key đã tồn tại chưa | |
if 'male' not in person.keys(): | |
person['male'] = True | |
else: | |
print("Key đã tồn tại!!!") | |
print(person) # {'name': 'Trần Văn Lộc', 'address': 'Đà Nẵng', 'age': 23, 'male': True} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment