티스토리 뷰

python lecture/basic

[edu] format (문자열, str)

burningrizen 2019. 1. 29. 21:57


문자열 중간에 가변적으로 변경 가능한 형태로 하고 싶을 때가 있다.


s = "age=10, name=kim"
print(s)


format 을 사용해 보자


age = 10
name = "kim"
s = "age={}, name={}".format(age, name)
print(s)


댓글