Commit 47b2fdc8 by BellCodeEditor

save project

parent d6c50111
Showing with 6 additions and 12 deletions
a=['还是',20,'我',30]
print(a)
a={'还是':20,'我':30}
print(a)
print(a["我"])
a["我"]=10000
print(a)
a['hjg']='gh'
print(a)
if "我" in a:
print(a["我"])
\ No newline at end of file
def a():
b=input("请输入")
print(b)
a()
a()
\ 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