Toggle navigation
Toggle navigation
This project
Loading...
Sign in
오수빈
/
assignment0326_1
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-27 11:35:13 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
739cd93823b97552a148d3558fd3b8a3cc859006
739cd938
1 parent
102c0ec9
echo funtion added
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
echo.py
echo.py
View file @
739cd93
1
-
v
=
input
(
"입력 : "
)
1
+
while
(
1
)
:
2
-
print
(
"출력 : "
+
v
)
2
+
v
=
input
(
"입력 : "
)
3
+
if
v
==
"exit"
:
4
+
break
5
+
print
(
"출력 : "
+
v
)
6
+
print
(
"----"
)
...
\ No newline at end of file
...
\ No newline at end of file
...
...
Please
register
or
login
to post a comment