Toggle navigation
Toggle navigation
This project
Loading...
Sign in
마수현
/
ossw-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
Ma Suhyeon
2020-09-25 23:12:15 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f98a0b46ceb16d7d724defc86870e76b733fc5b9
f98a0b46
1 parent
68cee7af
Implement exit
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
echo.py
echo.py
View file @
f98a0b4
1
while
True
:
1
while
True
:
2
-
print
(
input
())
...
\ No newline at end of file
...
\ No newline at end of file
2
+
line
=
input
()
3
+
4
+
if
line
==
'exit'
:
5
+
break
6
+
7
+
print
(
line
)
...
\ No newline at end of file
...
\ No newline at end of file
...
...
Please
register
or
login
to post a comment