Commit 97f1e2d9 by BellCodeEditor

save project

parent f4f063ae
Showing with 3 additions and 7 deletions
dict = {'l':68,'g':72,'d':88}
v=dict.pop('l')
print(dict)
del dict
print(dict)
dict.clear()
print(dict)
\ No newline at end of file
for u in dict.keys():
print(u)
\ 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