Commit 364b57b6 by BellCodeEditor

auto save

parent 3d407649
Showing with 8 additions and 2 deletions
...@@ -5,4 +5,10 @@ print(len(list_hero)) ...@@ -5,4 +5,10 @@ print(len(list_hero))
print(len(dict_hero)) print(len(dict_hero))
dict_hero['丁二']=40 dict_hero['丁二']=40
print(dict_hero) print(dict_hero)
print(dict_hero['赵一']) print(dict_hero['赵一'])
\ No newline at end of file dict_hero['诺琳']=100
print(dict_hero)
if '木木' in dict_hero:
print('在')
else:
print('不在')
\ 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