Toggle navigation
Toggle navigation
This project
Loading...
Sign in
이세진
/
echo-program
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-26 12:23:33 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b8e1fb02ebc49b705654c7ea7a64287328b1a8a9
b8e1fb02
0 parents
initial commit
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
echo.py
echo.py
0 → 100644
View file @
b8e1fb0
1
+
def
echo
():
2
+
while
(
True
):
3
+
word
=
input
(
"Enter the word: "
)
4
+
print
(
word
)
5
+
return
6
+
7
+
8
+
echo
()
Please
register
or
login
to post a comment