데이터과학 삼학년

f-string escape string (중괄호를 나오게 하려면) 본문

Python

f-string escape string (중괄호를 나오게 하려면)

Dan-k 2021. 6. 17. 19:59
반응형

Braces (중괄호)

f-string을 쓸 때, 중괄호가 나오게 하려면 중괄호를 2개 쓰면 된다.

f"{{70 + 4}}" 
# '{70 + 4}'

중괄호를 3개쓰면, single brace의 결과가 산정되고, 중괄호 표시가 string 상으로 나타남

 f"{{{70 + 4}}}" 
 #'{74}'

 

중괄호를 3개 초과해서 사용하면 단순히 중괄호가 스트링 그 자체로 나타남

 f"{{{{70 + 4}}}}" 
 #'{{70 + 4}}'

 

https://realpython.com/python-f-strings/

 

Python 3's f-Strings: An Improved String Formatting Syntax (Guide) – Real Python

As of Python 3.6, f-strings are a great new way to format strings. Not only are they more readable, more concise, and less prone to error than other ways of formatting, but they are also faster! By the end of this article, you will learn how and why to sta

realpython.com

 

728x90
반응형
LIST
Comments