Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김혁우
/
gitbranch-assignment02
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
Hyukwoo Kim
2020-09-25 18:33:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4c5f48437aa5ad88e8210dcbd8e6865dd3aeb72b
4c5f4843
1 parent
85375ff0
echo.py 파일 생성
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
echo.py
echo.py
View file @
4c5f484
1
+
print
(
"입력한 글자가 exit면 프로그램 종료 그 외는 입력한 글자 출력"
)
2
+
a
=
input
()
3
+
if
(
a
==
"exit"
):
4
+
exit
()
5
+
else
:
6
+
print
(
a
)
...
...
Please
register
or
login
to post a comment