[Python]Print()

 

Print는 가장 기본적인 Output 함수 입니다. 이번 포스팅에서는 파이썬의 Print함수에 대해 정리 해 보겠습니다.

 

기본사용 방법


print('Hello World!')
print("Hello World!")
print("""Hello World!""")
print('''Hello World!''')

 

seperater 옵션


sep 인자를 사용하면 콤마로 구분된 문자열을 설정 된 값을 사용하여 결합 할 수 있습니다.

 

print('2020','01','01', sep = '-')
#출력 결과 : 2020-01-01

print('email', 'naver.com', sep='@')
#출력 결과 : email@naver.com

 

end 옵션


end 인자를 사용하면 print 함수의 마지막을 어떻게 처리 할 것이지 설정 할 수 있습니다. 아래는 end = ''로 처리 함으로 써 print()시 줄바꿈이 되지 않도록 설정 하였습니다.

 

print('Welcome To', end=' ')
print('Pyhon', end='')
#출력 결과 : Welcome To Python

 

format 옵션


print('{} and {}'.format('You', 'Me'))
#출력 결과 : You and Me

print("{0} and {1} and {0}".fromat('You', 'Me'))
#출력 결과 : You and Me and You

print("{a} are {b}".format(a="You", b="Me"))
#출력 결과 : You and Me

 

%s, %d, %f


%s는 문자, %d는 숫자, %f는 실수를 의미 합니다.

 

print("%s's favorite number is %d" % ("Ready", 7))
#출력 결과 : Ready's favorite number is 7

print("Test1 : %5d, Price: %4.2f" % (776, 6534.123))
#출력 결과 : Test1 : 776, Price: 6534.12 

print("Test2 {0: 5d}, Price: {1: 4.2f}".format(776, 6534.123))
#출력 결과 : Test1 : 776, Price: 6534.12 

print("Test2 {a: 5d}, Price: {b: 4.2f}".format(a=776, b-6534.123))
#출력 결과 : Test1 : 776, Price: 6534.12 

 

Escape 코드

  • \n 개행
  • \t 탭
  • \\ 문자 \
  • \' 문자 '
  • \" 문자 "
  • \r 캐리지 리턴
  • \f 풀 피트
  • \a 벨 소리
  • \b 백 스페이스
  • \000 널 문자

댓글



Designed by JB FACTORY