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} a={"语文":100,"英语":100}
for i in goods.keys(): b={"语文":10,"英语":0}
print(i) c={"语文":6,"英语":9}
for i in goods.values(): x={"A":a,"B":b,"C":c}
print(i) z=input("你叫什么名字?")
for a,b in goods.items(): y=x[z]
print(a,b) 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