Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이환희
/
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-04-03 16:38:25 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
938e48eea01b81ddbe1798bca885c52887f36b79
938e48ee
1 parent
d620d7d3
add exit and branch
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
hello.py
hello.py
View file @
938e48e
1
-
print
(
"helloworld"
)
...
\ No newline at end of file
...
\ No newline at end of file
1
+
print
(
"helloworld"
)
2
+
def
EXIT
():
3
+
A
=
input
(
"exit을 입력하면 함수가 종료 : "
)
4
+
if
A
==
"exit"
:
5
+
exit
()
6
+
7
+
while
True
:
8
+
EXIT
()
...
\ No newline at end of file
...
\ No newline at end of file
...
...
Please
register
or
login
to post a comment