Skip to content

Instantly share code, notes, and snippets.

@Celia-code
Last active May 8, 2020 03:39
Embed
What would you like to do?
字典
age = {'Amy': 18, 'Ben': 24}
age['Coco'] = 20
print(age)
# 打印出{'Amy': 18, 'Ben': 24, 'Coco': 20}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment