Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이준성
/
git-branch-hw2
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 14:32:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3e60d2b020bbd2bc42be671fe4081fa323e8f4de
3e60d2b0
1 parent
26ab0635
Implement exit function
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
echo.py
echo.py
View file @
3e60d2b
1
-
echo
=
input
()
2
-
print
(
echo
)
...
\ No newline at end of file
...
\ No newline at end of file
1
+
while
1
:
2
+
echo
=
input
(
"입력 : "
)
3
+
if
echo
==
"exit"
:
4
+
quit
()
5
+
6
+
print
(
"출력 : {}
\n
"
.
format
(
echo
))
...
...
Please
register
or
login
to post a comment