Python

[PEP8] String Quotes

ju_young 2022. 2. 7. 12:57
728x90
  • python에서 작은 따옴표 문자열과 큰 따옴표 문자열은 동일
  • 문자열에 작은 따옴표 또는 큰 따옴표가 포함되는 경우 다른 하나를 사용하여 백슬래시 사용을 피해야한다.
# https://www.kite.com/python/answers/how-to-put-quotes-in-a-string-in-python

# -- 1
print('"abc"')

# -- 2
print("'abc'")

# -- 3
print("""a'b"c""")

# -- backslash를 사용하는 경우
print("\"abc\"")
print('\'abc\'')
  • 삼중 따옴표로 묶인 문자열의 경우 항상 큰 따옴표를 사용

 

[reference]

https://www.python.org/dev/peps/pep-0008/#string-quotes

728x90

'Python' 카테고리의 다른 글

[PEP8] Comments  (0) 2022.02.26
[PEP8] When to use trailing commas  (0) 2022.02.25
[PEP8] Whitespace in Expressions and Statements  (0) 2022.02.07
[PEP8] Code Lay-out  (0) 2022.02.04
한 번 사용하고 버려지는 Iterator 객체  (0) 2021.06.13