Commit be4c6291 by BellCodeEditor

save project

parent 40e73022
Showing with 15 additions and 0 deletions
dict={"123":123,"1234":1234}
for k in dict:
print(k+":",end="")
print(dict[k])
for k in dict:
print(k)
for v in dict.values():
print(v)
for k, v in dict.items():
print(k+":",end="")
print(v)
\ 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