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
b4501691
authored
Aug 06, 2024
by
BellCodeEditor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
save project
parent
7e2688ab
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
d.py
d.py
0 → 100644
View file @
b4501691
def
data
():
zong
=
[]
while
True
:
a
=
input
(
"输入价格"
)
if
a
==
"stop"
:
break
else
:
try
:
al
=
int
(
a
)
except
:
print
(
"请输入数字!"
)
else
:
zong
.
append
(
al
)
print
(
zong
)
return
(
zong
)
h
=
data
()
print
(
h
)
\ No newline at end of file
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