Commit 2096d39a by BellCodeEditor

save project

parent 8de74b98
Showing with 7 additions and 12 deletions
a=['更合',30,'伟祺',40]
print(a)
a={'更合':30,'伟祺':40}
print(a)
print(a['更合'])
a['更合']=99999
print(a)
a['nm']="1"
print(a)
if '更合' in a:
print(a['更合'])
\ No newline at end of file
a={'s':999,'n':999,'wznbt':999}
k=input('买什么?')
if k in a:
print('nd'+k+'zf'+str(a[k])+'y')
else:
print('my')
\ 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