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
daeun
2020-09-25 16:50:27 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e424a314fcfdd146316b50460588b3a10f6bb6cb
e424a314
1 parent
17554576
add exit function to echo
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
echo_program.py
echo_program.py
View file @
e424a31
1
s
=
input
(
'input: '
)
1
s
=
input
(
'input: '
)
2
2
3
-
while
(
1
):
3
+
while
(
s
!=
'exit'
):
4
print
(
s
)
4
print
(
s
)
5
s
=
input
(
'input: '
)
5
s
=
input
(
'input: '
)
...
...
Please
register
or
login
to post a comment