Commit 41401f7f by BellCodeEditor

save project

parent 6d68849c
Showing with 26 additions and 1 deletions
......@@ -6,7 +6,7 @@
name=input("What is your neme")
power=int(input("你臂力多少啊"))
# 归档处
hero=['赵一',30,'丁二',37,'孙五',52,'王猛',89,'周亮',98,'张宇',100]
hero=89,'周亮',98,'张宇',100]['赵一',30,'丁二',37,'孙五',52,'王猛',
for i in range(len(hero)):
if i%2==1 and hero[i]>=power:
hero.insert(i-1,name)
......
def new_input(): #定义函数
total = []
while True:
money = input('请输入(q退出):')
if money == 'q':
break
else:
try:
money = int(money)
except:
print("请重新输入一个数字")
else:
total.append(money)
print("-"*30)
return total
def price(jiage):
count=0
for i in jiage:
count=count+i
return count
a=new_input()
b=price(a)
print(b)
\ 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