반응형
파이썬에서 문자열과 숫자를 인쇄하려면 다음과 같은 다른 방법이 있습니까?
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
반응형
'파이썬' 카테고리의 다른 글
파이썬 Start IDLE with python 3 on Linux (python 2.7 installed alongside) (0) | 2021.02.11 |
---|---|
파이썬 Python find x value to corresponding max y value in plot (0) | 2021.02.11 |
파이썬 같은 줄에 새 출력 인쇄 (0) | 2021.02.10 |
파이썬 Python과 Powers 수학 (0) | 2021.02.10 |
파이썬 SQLAlchemy 부울 값이 없음입니다. (0) | 2021.02.10 |
댓글