2024-07-13
print() 함수는 화면에 출력해주는 함수입니다
print() 함수에는 세 가지 용도가 있습니다.
누구나 인용할 수 있지만 같은 줄에 다른 인용문은 사용할 수 없습니다
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
sep매개변수
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
file및flush매개변수. 이러한 매개변수는 파일을 처리할 수 있는 매개변수이기 때문입니다
위 내용은 파이썬의 PRINT 함수의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!