Commit e7b66a07 by BellCodeEditor

auto save

parent 22371cba
Showing with 11 additions and 0 deletions
A={}
A['a']=1
A['b']=2
A['c']=3
print(A)
A.pop('a')
print(A)
A['b']=1
print(A)
for i,j in A.items():
print(i,j)
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