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

Administrator / lesson9_2

  • 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 aff0fae7 authored 3 years ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

save project

parent 45a2dff2
Hide whitespace changes
Inline Side-by-side
Showing with 9 additions and 8 deletions
  • a.py
a.py
View file @ aff0fae7
...@@ -4,13 +4,14 @@ def new_input(): ...@@ -4,13 +4,14 @@ def new_input():
unit= input("请输入:") unit= input("请输入:")
if unit== 'q': if unit== 'q':
break break
else:
try:
unit = int(unit)
except:
print("请输入整数")
else: else:
total.append(unit) try:
print(total) unit = int(unit)
new_input() except:
print("请输入整数")
else:
total.append(unit)
print(total)
a = new_input()
print(a)
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