>백엔드 개발 >파이썬 튜토리얼 >Python에서 한 줄에 여러 항목을 인쇄하는 방법은 무엇입니까?

Python에서 한 줄에 여러 항목을 인쇄하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-12-06 04:06:14910검색

How to Print Multiple Items on One Line in Python?

한 줄에 여러 요소 인쇄

질문:

여러 항목을 인쇄하는 방법, Python에서 같은 줄에 고정 텍스트와 변수를 포함합니까? 다음 코드를 고려하십시오.

score = 100
name = 'Alice'
print('Total score for %s is %s', name, score)

원하는 출력은 "Alice의 총 점수는 100입니다."이지만 현재 코드에서는 "%s의 총 점수는 %s Alice 100입니다."

답변:

한 줄에 여러 항목을 인쇄하는 데는 여러 가지 기술이 있습니다.

튜플을 인수로 전달:

% 형식을 사용하여 제공된 코드를 수정하려면 튜플을 인수로 전달하세요.

print("Total score for %s is %s" % (name, score))

단일 요소가 있는 튜플에는 괄호가 필요합니다. ('this',).

기타 일반적인 방법:

  • 사전:
print("Total score for %(n)s is %(s)s" % {'n': name, 's': score})
  • 새로운 스타일의 문자열 형식:
print("Total score for {} is {}".format(name, score))
  • 숫자 포함:
print("Total score for {0} is {1}".format(name, score))
  • 명시적 이름:
print("Total score for {n} is {s}".format(n=name, s=score))
  • 문자열 연결:
print("Total score for " + str(name) + " is " + str(score))

선택 및 권장 메서드:

  • 매개변수:
print("Total score for", name, "is", score)
print("Total score for ", name, " is ", score, sep='') # No spaces between arguments
  • f-문자열(Python 3.6 ):
print(f'Total score for {name} is {score}')

위 내용은 Python에서 한 줄에 여러 항목을 인쇄하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.