您好,登錄后才能下訂單哦!
了解python輸出函數(shù)是哪個(gè)?這個(gè)問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個(gè)問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
在編程實(shí)踐中,print 的使用頻率非常高,特別是程序運(yùn)行到某個(gè)時(shí)刻,要檢測產(chǎn)生的結(jié)果時(shí),必須用 print 來打印輸出。
關(guān)于 print 函數(shù),前面很多地方已經(jīng)提及過,可用于寫入標(biāo)準(zhǔn)輸出?,F(xiàn)在,是時(shí)候該深入了。
注意:這里強(qiáng)調(diào)的是“print 函數(shù)”,而不是“print 語句”。
深入print
在 Python 2.x 中,print 是一個(gè)語句,但是在 Python 3.x 中,它是一個(gè)函數(shù)。如果 2.x 和 3.x 都使用過,你就會發(fā)現(xiàn)差異有多么大。
進(jìn)入 3.x 的交互式 shell,嘗試使用“print 語句”:
[wang@localhost ~]$ python Python 3.5.2 (default, Mar 29 2017, 11:05:07) [GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> >>> print 'Python' ... SyntaxError: Missing parentheses in call to 'print'
對于大多數(shù)人來說,這個(gè)錯(cuò)誤信息再熟悉不過了。正如上面所提到的那樣,print 是 3.x 中的一個(gè)函數(shù),與其他函數(shù)一樣,參數(shù)應(yīng)該被圓括號括起來
>>> print('Python') Python
print函數(shù)
要了解 print 函數(shù)的用途,可以使用 help() 來尋求幫助:
>>> help(print) ... Help on built-in function print in module builtins: 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.
將對象輸出到文本流文件,由 sep 分開,然后以 end 結(jié)束。如果 sep、end、file 和 flush 出現(xiàn),則必須以關(guān)鍵字參數(shù)的形式指定。
不使用關(guān)鍵字參數(shù)
print 函數(shù)可以打印任意數(shù)量的值(value1, value2, …),這些值由逗號分隔。
>>> age = 18 >>> >>> print('age', age) age 18
很容易發(fā)現(xiàn),兩個(gè)值之間有一個(gè)分隔符 - 空格(默認(rèn)值),這取決于 sep。
分隔符
如果要重新定義分隔符,可以通過 sep 來指定。
>>> print('age', age, sep='') # 去掉空格 age18 >>> >>> print('www', 'python', 'org', sep='.') # 以 . 分割 www.python.org
感謝各位的閱讀!看完上述內(nèi)容,你們對python輸出函數(shù)是哪個(gè)大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。