Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / lesson11_4

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit efaa11ab authored a year ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent 4ec61a3e c305884l961p219a10036/wx591545
Show whitespace changes
Inline Side-by-side
Showing with 21 additions and 6 deletions
  • func.py
func.py
View file @ efaa11ab
def new_input(): def new_input():
total = [] total = []
while True: while True:
unit= input("请输入(q退出):") unit = input('请输入(q退出):')
if unit== 'q': if unit == 'q':
break break
else: else:
try: try:
unit = int(unit) unit = int(unit)
except: except:
print("输入错误请重新输入") print("请重新输入一个数字")
else:
total.append(unit) total.append(unit)
print(""*30) finally:
print("=====================")
return total return total
# 创建函数sum放入参数money
def sum(money):+
# 设置变量count
count=0
# 遍历列表
for i in money:
# 计算总价
return count
# 返回总数count
price = new_input()
# 调用函数sum并赋值给pay
resuult=new_input() print("您一共消费了" + str(pay) + "元!扫码还是现金呢?")
print(result)
......
This diff is collapsed. Click to expand it.
  • Write
  • Preview
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