Commit 30beeaee by BellCodeEditor

save project

parent 5f918fec
Showing with 101 additions and 0 deletions
......@@ -7,3 +7,103 @@ print(list_hero[0])
dict_hero = {'赵一':30,'丁二':37,'孙五':52,'王猛':89,'周亮':98}
print(dict_hero['王猛'])
''
''
''
''
''
''
''
''
''
''
''
''
''
''
dict_hero={'张三':1000000,'候子':1,'候候':11,'候七':30}
print(dict_hero)
print(dict_hero['候七'])
dict_hero['候七']=32
print(dict_hero)
dict_hero['候师']=26780
print(dict_hero)
dict_hero['候爸']=98321
print(dict_hero)
print(dict_hero['候爸'])
dict_hero['候爸']=32
print(dict_hero)
\ 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