% 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