Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Administrator
/
lesson11_2
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
0c4ef9b6
authored
Jan 19, 2022
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
bcc9d2ad
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
func.py
func.py
View file @
0c4ef9b6
def
ab
():
total
=
[]
total
=
[]
#保存价格
while
True
:
unit
=
input
(
"请输入(q退出):"
)
if
unit
==
"q"
:
break
...
...
@@ -14,6 +13,18 @@ def ab():
total
.
append
(
unit
)
finally
:
print
(
"-"
*
30
)
return
total
return
total
#返回价格列表
result
=
ab
()
print
(
result
)
def
sum
(
money
):
cont
=
0
for
i
in
money
:
cont
+=
i
return
cont
print
(
sum
(
result
))
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