문자열의 중괄호 자리에 format 뒤 괄호 안에 들어있는 값을 순서대로 하나씩 넣는다
ex)
number = 20
welcome = '환영'
base = '{}번 손님 {}'
print(number,'손님', welcome)
print(base.format(number,welcome)
print('{}번 손님 {}' .format(number,welcome))
ex)
name = "jay"
color = 'green'
print('안녕하세요. 제 이름은 {}이고 좋아하는 색상은 {}입니다.'.format(name, color ))