Commit 1d3835c0 by BellCodeEditor

save project

parent 21d32239
Showing with 7 additions and 7 deletions
A={"1":3,"2":4,"3":5,"4":6,"5":7}
print(A)
# A={"1":3,"2":4,"3":5,"4":6,"5":7}
# print(A)
print(A["1"])
A['1']=4
print(A)
# print(A["1"])
# A['1']=4
# print(A)
A["7"]=5
print(A)
# A["7"]=5
# print(A)
dict={'可口可乐':3,'旺仔牛奶'4,"农夫山泉":1}
k=input("你买什么")
......
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