Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김형률
/
2018_1_opensource
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
김형률
2018-03-30 10:49:59 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
06beb67f1c92c0ccfb43890818379374d4f4c0ed
06beb67f
1 parent
991bdc5a
-change parameter a to b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
echo.py
echo.py
View file @
06beb67
1
-
a
=
input
()
1
+
b
=
input
()
2
-
if
(
a
==
"A"
):
2
+
if
(
b
==
"A"
):
3
print
(
"A"
)
3
print
(
"A"
)
4
-
elif
(
a
==
"B"
):
4
+
elif
(
b
==
"B"
):
5
print
(
"B"
)
5
print
(
"B"
)
6
else
:
6
else
:
7
print
(
"error"
)
7
print
(
"error"
)
...
...
Please
register
or
login
to post a comment