Commit 4aba0643 by BellCodeEditor

save project

parent c0eb20fc
Showing with 12 additions and 7 deletions
goods = {'可口可乐':3,'旺仔牛奶':4,'农夫山泉':1,'辣条':3,'巴西烤肉':2,'果冻':4,'乐事':5,'奥利奥':10,'巧克力':6}
for i in goods.keys():
print(i)
for i in goods.values():
print(i)
for a,b in goods.items():
print(a,b)
a={"语文":100,"英语":100}
b={"语文":10,"英语":0}
c={"语文":6,"英语":9}
x={"A":a,"B":b,"C":c}
z=input("你叫什么名字?")
y=x[z]
if z in x:
for i,g in y.items():
print(i,g)
else:
print("错误")
\ 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