Python print函式引數詳解以及效果展示
官方文件
print(…)
print(value, …, sep=’ ‘, end=’\n’, file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.
引數解析
value:需要輸出的值,可以是多個,用”,”分隔。
sep:多個輸出值之間的間隔,預設為一個空格。
end:輸出語句結束以後附加的字串,預設是換行(’\n’)。
file:輸出的目標物件,可以是檔案也可以是資料流,預設是“sys.stdout”。
flush:flush值為True或者False,預設為Flase,表示是否立刻將輸出語句輸出到目標物件。
演示
預設:print(value, …, sep=’ ‘, end=’\n’, file=sys.stdout, flush=False)
>>> print("hello world")
hello world
當value有多個:
>>> print("hello","world")
hello world
當sep為”,”
>>> print("hello","world",sep=",")
hello,world
當end為“”
>>>print("hello","world",end="")
>>>print("hello","world")
hello worldhello world
當file指向test.txt
test = open("test.txt", "w")
print("hello","world",sep="\n", file=test)
此時當前目錄下會新建一個test.txt檔案裡面內容為
hello
world
flush=False
該引數只有兩個選項True or False。
當flush=False時,輸出值會存在快取,然後在檔案被關閉時寫入。
當flush=True時,輸出值強制寫入檔案。
相關文章
- 函式引數詳解函式
- Python 中__init__函式以及引數selfPython函式
- Python 序列型別以及函式引數型別Python型別函式
- OpenCV中的findContours函式引數詳解OpenCV函式
- js-arguments 函式引數物件詳解JS函式物件
- python---函式引數、變數Python函式變數
- 函式、引數、解構函式
- Python函式引數總結Python函式
- python函式變長引數Python函式
- Python函式引數和註解是什麼Python函式
- Go語言Slice作為函式引數詳解Go函式
- python socket函式詳解Python函式
- 字串函式 print ()字串函式
- Python函式/動態引數/關鍵字引數Python函式
- python sorted()函式的引數用法Python函式
- Python中Numpy函式詳解Python函式
- 函式引數 引數定義函式型別函式型別
- JavaScript 函式引數解構物件JavaScript函式物件
- 給妹子講python-S01E21函式引數的匹配與解包詳解Python函式
- python介面自動化(三十四)-封裝與呼叫--函式和引數化(詳解)Python封裝函式
- 1分鐘掌握 Python 函式引數Python函式
- python基礎之 函式的引數Python函式
- python中函式的引數傳遞Python函式
- python不定長引數如何呼叫函式?Python函式
- SwaggerAPI註解詳解,以及註解常用引數配置SwaggerAPI
- Python函式的位置引數、關鍵字引數精講Python函式
- python的print函式不要換行怎麼寫Python函式
- 簡單介紹python的input,print,eval函式Python函式
- 函式解構引數小細節函式
- JavaScript函式引數解構賦值JavaScript函式賦值
- Python語法—函式及引數傳遞Python函式
- Python正規表示式 findall函式詳解Python函式
- 『無為則無心』Python函式 — 26、Python函式引數的傳遞方式Python函式
- Javascript函式引數求值——Thunk函式JavaScript函式
- 函式基礎和函式引數函式
- 手風琴方式圖片展示效果詳解
- C語言函式傳遞指標引數的問題詳解C語言函式指標
- python中print()有什麼用?常用引數有哪些?Python