Skip to content

Instantly share code, notes, and snippets.

@vanlocAI1996
Created September 29, 2019 07:50
Show Gist options
  • Save vanlocAI1996/c16b0f406fbd5b87e9520f5c5417245d to your computer and use it in GitHub Desktop.
Save vanlocAI1996/c16b0f406fbd5b87e9520f5c5417245d to your computer and use it in GitHub Desktop.
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