기본적인 print()문을 이용할 때, 따옴표등 특수문자를 출력하는 방법.



1. \ (Back slash)


\" or \'


E.g.

print('\"Hello World !\"')

Result

"Hello World !"




2. ''' or """


Block Comment를 쓸때와 같은 기호를 써보자.


E.g.

print('''

"Hello

World!"

''');

Result

"Hello

World!"

반응형

'Programming > Python' 카테고리의 다른 글

[Python] Data Structure - Tuple  (0) 2017.03.31
[Python] Data Structure - List  (0) 2017.03.31
[Python] List - Negative index  (0) 2017.03.31
[Python] NULL  (0) 2017.03.31
[Python] 주석달기  (0) 2017.03.31

+ Recent posts