"일꾼이 일을 잘하려면 먼저 도구를 갈고 닦아야 한다." - 공자, 『논어』.
첫 장 > 프로그램 작성 > 파이썬의 PRINT 함수

파이썬의 PRINT 함수

2024-08-16에 게시됨
검색:782

PRINT function in python

2024년 7월 13일

PRINT() 함수

print() 함수는 화면에 출력하는 함수입니다

print() 함수는 세 가지 용도로 사용됩니다.

  1. 작은따옴표(' ')
  2. 큰따옴표(" ")
  3. 따옴표 세 개(""" """)------------여러 줄의 경우

누구나 유형의 인용문을 사용할 수 있지만 같은 줄에 다른 인용문을 사용할 수 없습니다.

print()---------------------------#create empty line
print("jothilingam")--------------#string should print with""
print(5)------------------------#number can print without ""
print("jo""jo")--------------print without space
print("jo" "jo")--------------print without space
answer    jojo
print("jo","jo")--------------print with space
answer     jo jo

f-문자열로 인쇄

name = "jothi"
print(f"Hello {name}")
# Output : Hello jothi

줄 바꿈 이스케이프 문자 \n

print("jo\nthi")
jo
thi

print() 함수의 매개변수:

구분 매개변수

print("jo","jo",sep="_")...................sep="" is default
answer    jo_jo
print("jo", "lingam", sep='thi')
answer     jothilingam

최종 매개변수

print("jothi",end="lingam")
answer  jothilingam
print("jothi",end="")----------------without space
print("lingam")
answer  jothilingam
print("jothi",end=" ")----------------with space
print("lingam")
answer  jothi lingam

* 매개변수

print(*"jothilingam")
answer    j o t h i l i n g a m

파일 및 플러시 매개변수. 이러한 매개변수는 파일을 처리할 수 있는 매개변수이기 때문입니다.

릴리스 선언문 이 글은 https://dev.to/jothilingam88/print-function-in-python-35jj?1에서 복제됩니다.1 침해 내용이 있는 경우, [email protected]으로 연락하여 삭제하시기 바랍니다.
최신 튜토리얼 더>

부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.

Copyright© 2022 湘ICP备2022001581号-3