码迷,mamicode.com
首页 > 编程语言 > 详细

[python]bytes和str

时间:2017-06-18 20:44:07      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:win   copyright   edits   类型   列表   元素   inf   概念   ati   

Python 3.6.1 (v3.6.1:69c0db5050, Mar 21 2017, 01:21:04)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> a="Hello World"
>>> b=a.encode("utf-8")
>>> b
b‘Hello World‘
>>> b[0]
72
>>> b[:1]
b‘H‘
>>> a[0]
‘H‘
>>> a[:1]
‘H‘
>>> type(b[0])
<class ‘int‘>
>>> c = [i for i in range(10)]
>>> c
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> c[0]
0
>>> c[:1]
[0]
>>>

bytes的元素都是range(256)的元素,bytes的切片都是bytes类型。

str的元素都是str(python没有char的概念),str的切片还是str类型。

列表的元素是元素的类型,列表的切片还是列表。

*所以说str是特殊的列表,bytes是特殊的str?

[python]bytes和str

标签:win   copyright   edits   类型   列表   元素   inf   概念   ati   

原文地址:http://www.cnblogs.com/sigai/p/7045180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!