f-string(formated string literal)
PEP 498 -- Literal String Interpolation
The official home of the Python Programming Language
www.python.org
index = 1
example = "hello"
print(f'{index+1}:{example}')
--> 2: hello
'Python' 카테고리의 다른 글
Regular expression operation (re.sub) (0) | 2020.08.16 |
---|---|
Enumerate (0) | 2020.08.12 |
Type Hint (0) | 2020.08.11 |
댓글