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

溫馨提示×

溫馨提示×

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

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

代碼總結Python2 和 Python3 字符串的區別

發布時間:2020-10-22 00:23:48 來源:腳本之家 閱讀:187 作者:moon__light 欄目:開發技術

Python2

>>> 
>>> isinstance(b'abc', bytes)
True
>>> 
>>> isinstance(b'abc', str)
True
>>> 
>>> isinstance('abc', str)
True
>>> 
>>> isinstance('abc', bytes)
True
>>> 
>>> 
>>> 
>>> 'abc'.startswith('ab')
True
>>> 
>>> b'abc'.startswith('ab'.encode())
True
>>> 
>>> b'abc'.startswith('ab')
True
>>> 
>>> 'abc'.startswith('ab'.encode())
True
>>>

Python3

>>> 
>>> isinstance(b'abc', bytes)
True
>>> 
>>> isinstance(b'abc', str)
False
>>> 
>>> isinstance('abc', str)
True
>>> 
>>> isinstance('abc', bytes)
False
>>> 
>>> 
>>> 
>>> 'abc'.startswith('ab')
True
>>> 
>>> b'abc'.startswith('ab'.encode())
True
>>> 
>>> b'abc'.startswith('ab')
Traceback (most recent call last):
 File "<pyshell#25>", line 1, in <module>
  b'abc'.startswith('ab')
TypeError: startswith first arg must be bytes or a tuple of bytes, not str
>>> 
>>> 'abc'.startswith('ab'.encode())
Traceback (most recent call last):
 File "<pyshell#27>", line 1, in <module>
  'abc'.startswith('ab'.encode())
TypeError: startswith first arg must be str or a tuple of str, not bytes
>>>

擴展學習

python2中有一種類型叫做unicode型,例

type(u"a") => str型
type("a".decode('utf8')) => unicode型

兩者返回的類型都是unicode型

而在python3中,所有的字符串都是unicode,所以就不存在單獨的unicode型,全部都是字符串型

type(u"a") => str型
type("a".decode('utf8')) => 報錯,python3不能這樣寫

但是python3中多處一種字符串

type(b'132') => byte型

以上就是相關的知識點內容,如果大家有任何補充可以聯系億速云小編。

向AI問一下細節

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

AI

达孜县| 四平市| 阿克陶县| 孝昌县| 石阡县| 衡南县| 闽清县| 习水县| 无棣县| 日土县| 林口县| 曲水县| 温泉县| 南安市| 沈丘县| 西安市| 横山县| 华宁县| 长治县| 浦东新区| 齐河县| 青州市| 瑞昌市| 沂水县| 余江县| 津南区| 丘北县| 周宁县| 正定县| 皮山县| 遂川县| 手游| 荔波县| 文登市| 沙田区| 黄石市| 阿克陶县| 嘉祥县| 水富县| 肇东市| 德安县|