Toggle navigation
Toggle navigation
This project
Loading...
Sign in
배승호
/
echoPG
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
devsho
2021-09-30 18:45:38 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
149496ec8f1a1d433c1f20a47a2fad3d000e6a96
149496ec
1 parent
1180f38a
ver. exit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletions
echo.py
echo.py
View file @
149496e
def
exitPG
(
user_echo
):
if
user_echo
==
"exit"
:
return
True
else
:
return
False
user_echo
=
input
()
print
(
user_echo
)
\ No newline at end of file
if
exitPG
(
user_echo
)
==
False
:
print
(
user_echo
)
elif
exitPG
(
user_echo
)
==
True
:
print
(
"프로그램을 종료합니다."
)
\ No newline at end of file
...
...
Please
register
or
login
to post a comment