표준 입출력
콤마로 구분된 객체 목록을 받아들인다.
각 객체에 대해 문자열 생성하기 위해 str() 함수가 호출된다.
print("The values are ", x, y, z)
끝에 콤마가 나타나지 않으면 줄바꿈 문자로 종료
print "The values are ", x, y, z, w
print "the values are ", x, y,
print z, w
텍스트 출력에서 치환하기
form = """ My name is {name} """
print form.format(name='Sonic')