Toggle navigation
Toggle navigation
This project
Loading...
Sign in
유명현
/
OSS_git_branch_experiments
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
DevLeti
2022-03-25 12:07:22 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f79ff39d90a57458a946fc45811e4e1563541b14
f79ff39d
1 parent
228916df
If you enter 'exit', the program will exit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
echo.py
echo.py
View file @
f79ff39
1
while
(
True
):
1
while
(
True
):
2
-
i
=
input
(
""
)
2
+
i
=
input
(
"If you enter 'exit', the program will exit:"
)
3
-
print
(
i
)
3
+
if
(
i
==
"exit"
):
4
+
break
5
+
else
:
6
+
print
(
i
)
...
...
Please
register
or
login
to post a comment