Commit 1e8e16d4 by BellCodeEditor

save project

parent 868467d5
Showing with 12 additions and 11 deletions
scores=["语文",89,"数学",95,"英语",80]
def get_average(scores):
sun_score=0
for subject score in scores.items():
sum_score+=score
print("现在总分是%d%sum_score")
ave_score=sum_score/len(scores)
print("平均分是%d%ave_score")
get_average(scores)
\ No newline at end of file
...@@ -3,13 +3,4 @@ name=input('你叫啥名啊?') ...@@ -3,13 +3,4 @@ name=input('你叫啥名啊?')
power=int(input('你臂力多少啊?')) power=int(input('你臂力多少啊?'))
list_hero=['猴三',10,'猴一',21,'猴五',22,'猴队长',29,'猴七',30] list_hero=['猴三',10,'猴一',21,'猴五',22,'猴队长',29,'猴七',30]
for i in range(len(list_hero)): for i in range(len(list_hero)):
if i%2==1 and list_hero[i]>=power: if i%2==1 and list_hero[i]>
list_hero.insert(i-1,name) \ No newline at end of file
list_hero.insert(i,power)
break
print(list_hero)
# 请注释掉上面的代码,并在下一行创建一个名为dict_hero的字典
dict_hero=
print(dict_hero)
dict_hero{'猴三':10,'猴一':21,'猴五':22,'猴队长':29,'猴七':30}
print(dice_hero)
\ 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