Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson11_1
This project
Loading...
Sign in
Toggle navigation
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
aec14ad3
authored
Apr 09, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
auto save
parent
578e41ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
9 deletions
func.py
func.py
View file @
aec14ad3
total
=
[]
while
True
:
unit
=
input
(
"请输入:"
)
if
unit
==
'q'
:
break
else
:
total
.
append
(
unit
)
print
(
total
)
\ No newline at end of file
#把以下代码封装进new_input里面
def
new_input
():
total
=
[]
while
True
:
unit
=
input
(
"请输入:"
)
if
unit
==
'q'
:
break
else
:
#尝试把输入的内容转换为整数类型
#输入的内容不是数字:使用except捕捉异常
#提示“请输入数字”
#输入的数字:添加到列表里
total
.
append
(
unit
)
#print(total)
#返回值
return
total
#自定义一个计算总价格的函数count
def
count
(
money
):
sum
=
0
for
i
in
money
:
sum
+=
i
#加和
#返回值
abc
=
new_input
()
cba
=
count
(
abc
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment