Commit 83374e8a by BellCodeEditor

save project

parent 1bf51263
Showing with 7 additions and 7 deletions
def new_input(): def new_input():
while True: while True:
total = [] total = []
money= inpit('请输入(q退出):') money= input('请输入(q退出):')
if money == 'q': if money == 'q':
break break
else: else:
...@@ -15,13 +15,13 @@ def new_input(): ...@@ -15,13 +15,13 @@ def new_input():
print("_"*30 ) print("_"*30 )
return total return total
def cont(lb): def cont(liebiao):
mun = 0 num = 0
for i in lb: for i in lb:
mun = mun+i num = num+i
return mun return num
rsul=tots1 result=new_input()
print(rsul) print(result)
print("已经拿到用户列表") print("已经拿到用户列表")
print("开始进行方案2") print("开始进行方案2")
print(cout(result)) print(cout(result))
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