Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박시진
/
Assignment2
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
박시진
2022-04-01 02:06:39 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
52eb8ed0197b5ea59a4c43d4062985cb119a820b
52eb8ed0
1 parent
90e21afb
exit function is added
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
inputoutput.py
inputoutput.py
View file @
52eb8ed
x
=
input
(
"Enter your message : "
)
print
(
x
)
\ No newline at end of file
x
=
input
(
"If you enter 'exit' the program will exit : "
)
if
x
==
"exit"
:
quit
()
else
:
print
(
x
)
\ No newline at end of file
...
...
Please
register
or
login
to post a comment