Toggle navigation
Toggle navigation
This project
Loading...
Sign in
임태민
/
git-branch-assignment-02
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
임태민
2021-03-30 01:07:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
91c14a1bbf774446645cc384399e2edfa1cc68d8
91c14a1b
1 parent
2c60b3d4
Update echo-program.py
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
echo-program.py
echo-program.py
View file @
91c14a1
echo
=
input
(
"Enter user's input: "
)
print
(
echo
)
prog
=
True
while
(
prog
):
echo
=
input
(
"Enter user's input: "
)
if
(
echo
.
lower
()
==
"exit"
):
prog
=
False
else
:
print
(
echo
)
...
...
Please
register
or
login
to post a comment