본문 바로가기

Python/Python-코딩도장 심사문제

코딩도장 Python 심사문제 9-4 여러줄로 된 문자열 사용하기

# 다음 소스 코드를 완성하여 실행 결과대로 문자열이 출력되게 만드세요.
# ex)
# 'Python' is a "programming language"
# that lets you work quickly
# and
# integrate systems more effectively.
# 문제 제출 코딩도장 Python
# 답안 제출 2022/01/05 17:38 

s = """'Python' is a "programming language"
that lets you work quickly
and
integrate systems more effectively."""

print(s)

# 여러줄로 된 문자열을 사용하고 싶을때는 ''' 이나 """으로 묶어주면 입력한 그대로 사용할 수 있다.