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函式星號引數詳解Python函式
- Python 中__init__函式以及引數selfPython函式
- Python函式引數傳遞以及變數作用域Python函式變數
- Python 序列型別以及函式引數型別Python型別函式
- js-arguments 函式引數物件詳解JS函式物件
- window.open()函式引數用法詳解函式
- OpenCV中的findContours函式引數詳解OpenCV函式
- 函式、引數、解構函式
- Python print函式用法,print 格式化輸出Python函式
- Python: 函式引數魔法Python函式
- Go語言Slice作為函式引數詳解Go函式
- python---函式引數、變數Python函式變數
- 字串函式 print ()字串函式
- Python函式引數總結Python函式
- python函式變長引數Python函式
- Python 函式(預設引數)Python函式
- Python 函式(可變引數)Python函式
- Python 函式(引數組合)Python函式
- Python函式引數和註解是什麼Python函式
- python 中 print 函式用法總結Python函式
- Uploadify 3.2 引數屬性、事件、方法函式詳解事件函式
- 命令列引數解析函式getopt_long() 使用詳解命令列函式
- Python函式/動態引數/關鍵字引數Python函式
- 函式引數 引數定義函式型別函式型別
- python socket函式詳解Python函式
- JavaScript 函式引數解構物件JavaScript函式物件
- python sorted()函式的引數用法Python函式
- Python 函式 (關鍵字引數)Python函式
- python函式之引數傳遞Python函式
- 函式定義、函式的引數、函式的預設引數函式
- PHP 列印函式之 print print_rPHP函式
- zookeeper入門(3)API常用函式功能與引數詳解API函式
- python介面自動化(三十四)-封裝與呼叫--函式和引數化(詳解)Python封裝函式
- 給妹子講python-S01E21函式引數的匹配與解包詳解Python函式
- Python中的函式詳解Python函式
- Python中Numpy函式詳解Python函式
- python基礎之 函式的引數Python函式