Commit 1b3e166b by BellCodeEditor

save project

parent 256a255d
Showing with 7 additions and 6 deletions
b={'孙老师':1,'我':100} b={'a':1,'b':2}
b['孙老师']=100 b['a']=100
b['我']=1000 b['b']=200
b['c']=300
print(b['我']) print(b)
\ No newline at end of file if 'c' in b:
print(b['c'])
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