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
file和flush參數,因為這些參數是允許我們處理檔案的參數
以上是python 中的 PRINT 函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!