Commit 95f3b3f7 by BellCodeEditor

save project

parent 228ae912
Showing with 6 additions and 7 deletions
dict_hero={'一':1,'二':2,'三':3,'四':4}
print(dict_hero)
dict_hero['四']=98
print(dict_hero)
dict_hero['五']=100
print(dict_hero)
\ No newline at end of file
dict_heor={'一':1,'二':2,'三':3,'四':4}
dict_heor['六']=120
print(dict_heor)
if '四' in dict_heor:
print(dict_heor['四'])
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment