본문 바로가기
파이썬

파이썬 Print Combining Strings and Numbers

by º기록 2021. 2. 10.
반응형

파이썬에서 문자열과 숫자를 인쇄하려면 다음과 같은 다른 방법이 있습니까?

first = 10
second = 20
print "First number is %(first)d and second number is %(second)d" % {"first": first, "second":second}

 

해결 방법

 


다음 중 하나를 수행 할 수 있습니다 (다른 방법도있을 수 있음).

(1)  print("First number is {} and second number is {}".format(first, second))
(1b) print("First number is {first} and number is {second}".format(first=first, second=second)) 

또는

(2) print('First number is', first, 'second number is', second) 

(참고 : 공백은 나중에 쉼표로 구분하면 자동으로 추가됩니다.)

또는

(3) print('First number %d and second number is %d' % (first, second))

또는

(4) print('First number is ' + str(first) + ' second number is' + str(second))
  


 

참조 페이지 https://stackoverflow.com/questions/12018992

 

 

반응형

댓글