首頁  >  文章  >  後端開發  >  python 中的 PRINT 函數

python 中的 PRINT 函數

王林
王林原創
2024-07-17 11:34:571121瀏覽

PRINT function in python

2024年7月13日

列印()函數

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

file和flush參數,因為這些參數是允許我們處理檔案的參數

以上是python 中的 PRINT 函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn