Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김영곤
/
gitbranch-assignment2
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김영곤
2020-09-25 15:50:38 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2200ee05af234e239fe2170914ade0626aedc40a
2200ee05
1 parent
905cb966
exit.py added
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
exit.py
exit.py
0 → 100644
View file @
2200ee0
1
+
import
sys
2
+
3
+
while
1
:
4
+
a
=
input
(
"Do you want to exit?(Enter'exit' to exit) : "
)
5
+
if
a
==
'exit'
:
6
+
break
7
+
sys
.
exit
()
Please
register
or
login
to post a comment