Commit bac58aa2 by BellCodeEditor

auto save

parent 98f24605
Showing with 21 additions and 18 deletions
# 这是悟空为花果山小猴做臂力测试的程序代码 score={"a":57,"b":69,"c":100,"d":56}
name=input('你叫啥名啊?') k=input("name")
power=int(input('你臂力多少啊?')) v=input("score")
list_hero=['猴三',10,'猴一',21,'猴五',22,'猴队长',29,'猴七',30] if k in score:
for i in range(len(list_hero)): if int(v)>score[k]:
if i%2==1 and list_hero[i]>=power: score[k]=int(v)
list_hero.insert(i-1,name) print(str(k)+"同学"+"你"+str(v)+"分已上传")
list_hero.insert(i,power) else:
break print(str(k)+"同学"+"你的分数未刷新")
print(list_hero) else:
# 请注释掉上面的代码,并在下一行创建一个名为dict_hero的字典 score[str(k)]=int(v)
dict_hero= print(k+"同学"+"你"+v+"分已上传")
print(dict_hero) print(score)
\ No newline at end of file
# 直接运行以下代码,说说你的发现: # 直接运行以下代码,说说你的发现:
list_hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98] a=["l","g","z","b","s","g"]
dict_hero = {'赵一':30,'丁二':37,'孙五':52,'王猛':89,'周亮':98} hero =["l"]
print(len(list_hero)) v=(a[0:3])
print(len(dict_hero)) a.pop(-1)
\ No newline at end of file hero.extend(v)
print(a)
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