Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions introduce.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# 이 함수에서 자기소개를 해주세요.
def introduce():
# TODO : name에는 본인의 이름을, intro에는 본인의 자기소개를 넣어주세요.
name = 'Juchan Lee'
intro = '저는 미쿡사람입니다. 방가워요!'
print(f"안녕하세요 저는 {name}입니다. {intro}")
name = 'San'
intro = '저는 창원사람입니다. 방가워요!'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

반가워요 창원사람~~

print(f"안녕하세요 {name}입니다. {intro}")

# 이 아래 부분은 수정하지 마세요.
if __name__ == "__main__":
introduce()
introduce()