91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-07-15 11:05:10 來源:億速云 閱讀:443 作者:清晨 欄目:編程語言

這篇文章主要介紹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的區別有哪些的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

桦川县| 永福县| 沙洋县| 敦化市| 咸丰县| 太康县| 永川市| 邳州市| 阿尔山市| 桃园县| 康保县| 金昌市| 永登县| 双牌县| 封开县| 长治市| 宜丰县| 阳高县| 鹿邑县| 普兰县| 杭锦旗| 伊春市| 仁寿县| 宣汉县| 广元市| 湘潭市| 镇江市| 泰和县| 无锡市| 环江| 潼关县| 兴仁县| 远安县| 南乐县| 衢州市| 房产| 佛坪县| 高州市| 井陉县| 喜德县| 搜索|