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

溫馨提示×

溫馨提示×

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

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

python2和python3里的print有什么區別

發布時間:2020-04-11 13:44:27 來源:億速云 閱讀:431 作者:小新 欄目:編程語言

python2和python3里的print有什么區別?很多人都不太了解,今天小編為了讓大家更加了解print,所以給大家總結了以下內容,一起往下看吧。

python2和python3里的print有什么區別

在Python2和Python3中都提供print()方法來打印信息,但兩個版本間的print稍微有差異

主要體現在以下幾個方面:

1.python3中print是一個內置函數,有多個參數,而python2中print是一個語法結構;

2.Python2打印時可以不加括號:print 'hello world', Python3則需要加括號 print("hello world")

3.Python2中,input要求輸入的字符串必須要加引號,為了避免讀取非字符串類型發生的一些行為,不得不使用raw_input()代替input()

1. python3中,或許開發者覺得print同時具有兩重身份有些不爽,就只留了其中函數的身份:

print(value1, ..., sep=' ', end='\n', file=sys.stdout, flush=False)

從上面的方法原型可以看出,

①. print可以支持多個參數,支持同時打印多個字符串(其中...表示任意多個字符串);

②. sep表示多個字符串之間使用什么字符連接;

③. end表示字符串結尾添加什么字符,指點該參數就可以輕松設置打印不換行,Python2.x下的print語句在輸出字符串之后會默認換行,如果不希望換行,只要在語句最后加一個“,”即可。但是在Python 3.x下,print()變成內置函數,加“,”的老方法就行不通了。

>>> print("python", "tab", ".com", sep='') 
pythontab.com 
>>> print("python", "tab", ".com", sep='', end='') #就可以實現打印出來不換行 
pythontab.com

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

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

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

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

在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 = '*')<br>

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

from __future__ import print_function

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

以上就是python2和python3里的print有什么區別的詳細內容了,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎來億速云行業資訊!

向AI問一下細節

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

AI

舟山市| 壤塘县| 衡东县| 囊谦县| 樟树市| 屏山县| 项城市| 启东市| 尖扎县| 五河县| 平安县| 临湘市| 西乌珠穆沁旗| 静安区| 五峰| 肇州县| 鄂州市| 高雄县| 遂溪县| 旬邑县| 涿鹿县| 葫芦岛市| 陆河县| 麻栗坡县| 黑山县| 蛟河市| 本溪市| 山西省| 澎湖县| 眉山市| 普安县| 卫辉市| 桦甸市| 英吉沙县| 思南县| 龙川县| 仙居县| 内丘县| 临城县| 广东省| 涞水县|