Commit 57a81330 by BellCodeEditor

save project

parent eaf3f01f
Showing with 3 additions and 2 deletions
...@@ -3,8 +3,8 @@ for k in dict.keys(): ...@@ -3,8 +3,8 @@ for k in dict.keys():
print(k,end=" ") print(k,end=" ")
for k in dict.values(): for k in dict.values():
print(k,end=" ") print(k,end=" ")
for k in dict.items(): for k,v in dict.items():
print(k,end=" ") print(k,v,end=" ")
\ 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