% string
print("%s %s" %("one", "two")) # 출력: one two
print("%d %d" %(1, 2)) # 출력: 1 2
format 함수
print("{} {}".format("one", "two")) # 출력: one two
print("{} {}".format(1, 2)) # 출력: 1 2
f-string
가장 권장되는 formatting 기법
name = "sangwon"
age = 26
print(f"Hello, {name}. You are {age}")
# 출력: Hello, sangwon. You are 26
'Backend > Python' 카테고리의 다른 글
[Python] 파이썬 class의 특징 (0) | 2023.03.07 |
---|---|
[Python] asterisk (0) | 2023.03.07 |
[Python] generator (0) | 2023.03.07 |
[Python] 파이썬 코드만의 특징 (0) | 2023.03.06 |
[Python] __name__은 무슨 의미일까? (0) | 2023.03.06 |