免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

python3與2版本中print的區別有哪些-創新互聯

創新互聯www.cdcxhl.cn八線動態BGP香港云服務器提供商,新人活動買多久送多久,劃算不套路!

創新互聯-專業網站定制、快速模板網站建設、高性價比天心網站開發、企業建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式天心網站制作公司更省心,省錢,快速模板網站建設找我們,業務覆蓋天心地區。費用合理售后完善,10余年實體公司更值得信賴。

這篇文章主要介紹python3與2版本中print的區別有哪些,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

區別:Python2中的print是一個關鍵字,而Python3里的print是一個函數。關鍵字用法“print 要打印的內容”;函數用法“print(要打印的內容)”。

python3與2版本中print的區別有哪些

總地來說, Python2.7的print不是一個function,而Python3里的print是一個function。
兩都調用方式的主要區別如下:

print 'this is a string' #python2.7
print('this is a string') #python3

當然,python2.7里你也可以用括號把變量括起來, 一點都不會錯:

print('this is a string') #python2.7

但是python3將print改成function不是白給的:

1. 在python3里,能使用help(print)查看它的文檔了, 而python2不行:

>>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.

2 . 在python3里,能更方便的使用輸出重定向
python2.7里,你需要以類似于C++的風格完成重定向:

with open('print.txt', 'w') as f:
    print >> f, 'hello, python!'

在python3里:

with open('print.txt', 'w') as f:
    print('hello, python!', file = f)

file是python3 print新加的一個參數。 另一個很handy的參數是sep, 例如打印一個整數數組, 但你想用星號而不是空格連接。python2時可能需要寫一個循環來完成, python3里這樣就行了:

a = [1, 2, 3, 4, 5]
print(*a, sep = '*')

最后, 如果想在python2.7里使用python3的print,只需要在第一句代碼前加入:

from __future__ import print_function

注意, from __future__ import ...一類的語句一定要放在代碼開始處。

以上是python3與2版本中print的區別有哪些的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注創新互聯-成都網站建設公司行業資訊頻道!

本文標題:python3與2版本中print的區別有哪些-創新互聯
文章URL:http://m.newbst.com/article38/cosspp.html

成都網站建設公司_創新互聯,為您提供網站設計、手機網站建設、域名注冊、企業建站、響應式網站、動態網站

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都網頁設計公司