Toggle navigation
Toggle navigation
This project
Loading...
Sign in
진주성
/
git_branch_experiment
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
JuseongJIN
2021-04-01 16:54:46 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
71abee1d73360535fdf74f9d3592936907a72275
71abee1d
1 parent
5a803adf
funtion: if input in 'exit', program exit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
echoprogram_v2.py
echoprogram_v2.py
0 → 100644
View file @
71abee1
1
+
while
(
1
):
2
+
txt
=
input
(
"출력하고 싶은 말을 적어보세요!
\n
"
)
3
+
if
txt
==
"exit"
:
4
+
print
(
"종료"
)
5
+
break
6
+
else
:
7
+
print
(
txt
+
"
\n
"
)
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment