2024년 7월 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
구분 매개변수
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
파일 및 플러시 매개변수. 이러한 매개변수는 파일을 처리할 수 있는 매개변수이기 때문입니다.
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3