728x90
반응형

개요

  • 여러가지 방식으로 문자열 format하여 출력
  • 모두 동일한 출력 결과 수행
input_name = input("이름을 입력해주세요 : ")
input_type = input("타입번호를 선택해주세요 : ")

#case1
print(input_name,"님 ", input_type, "번을 선택하셨습니다.")

#case2
print("{0}님 {1}번을 선택하셨습니다.".format(input_name, input_type))

#case3
print("{name}님 {num}번을 선택하셨습니다.".format(name=input_name, num=input_type))

#case4
print(f"{input_name}님 {input_type}번을 선택하셨습니다.")

 

 

728x90

'*Programming > [ Py ] Python' 카테고리의 다른 글

[Py - N04] Tuple  (0) 2022.08.28
[Py - N03] List  (0) 2022.08.28
[Py - N01] print( ) 과 input( )  (0) 2022.08.28
[Py - N00] Again Python  (0) 2022.08.28
[Py - 02] 파이썬의 데이터 처리(변수)  (0) 2019.11.27

+ Recent posts