반응형

 

문자를 출력하다 보면 큰따옴표, 따옴표 출력이 필요할 때가 있습니다.

 

print로 간단하게 출력하는 방법을 보여드리겠습니다.

 

따옴표 및 큰따옴표 출력하기

 

왼쪽) 입력 / 오른쪽) 출력

a = "This is the python code."
#출력 : This is the python code.
b = "This is the 'python' code."
#출력 : This is the 'python' code.
c = 'This is the "python" code.'
#출력 : This is the "python" code.
d = '''This is the 'python' code.'''
#출력 : This is the 'python' code.
e = '''This is the "python" code.'''
#출력 : This is the "python" code.
f = """This is the 'python' code."""
#출력 : This is the 'python' code.
g = """This is the "python" code."""
#출력 : This is the "python" code.

 

큰따옴표로 전체를 묶고 안에 따옴표를 이용해 출력할 수 있으며, 반대로 따옴표로 전체를 묶고 안에 큰따옴표를 이용해서 출력할 수도 있습니다.

 

반응형

 

여러 줄 출력하기

 

왼쪽) 입력 / 오른쪽) 출력

h = "This is \
the python \
code."
# 출력 : This is the python code.

i = '''This is
the 'python'
code.'''
#출력 : This is
#       the 'python'
#       code.

 

역슬러쉬를 이용해서 문장이 이어지도록 연결할 수 있으며, 따옴표 3개를 이용해 여러 줄을 한꺼번에 연결해서 출력할 수도 있다.

 

반응형

+ Recent posts