系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 脚本中心 > python > 详细页面

代码总结Python2 和 Python3 字符串的区别

时间:2020-01-28来源:系统城作者:电脑系统城

Python2


 
  1. >>>
  2. >>> isinstance(b'abc', bytes)
  3. True
  4. >>>
  5. >>> isinstance(b'abc', str)
  6. True
  7. >>>
  8. >>> isinstance('abc', str)
  9. True
  10. >>>
  11. >>> isinstance('abc', bytes)
  12. True
  13. >>>
  14. >>>
  15. >>>
  16. >>> 'abc'.startswith('ab')
  17. True
  18. >>>
  19. >>> b'abc'.startswith('ab'.encode())
  20. True
  21. >>>
  22. >>> b'abc'.startswith('ab')
  23. True
  24. >>>
  25. >>> 'abc'.startswith('ab'.encode())
  26. True
  27. >>>

Python3


 
  1. >>>
  2. >>> isinstance(b'abc', bytes)
  3. True
  4. >>>
  5. >>> isinstance(b'abc', str)
  6. False
  7. >>>
  8. >>> isinstance('abc', str)
  9. True
  10. >>>
  11. >>> isinstance('abc', bytes)
  12. False
  13. >>>
  14. >>>
  15. >>>
  16. >>> 'abc'.startswith('ab')
  17. True
  18. >>>
  19. >>> b'abc'.startswith('ab'.encode())
  20. True
  21. >>>
  22. >>> b'abc'.startswith('ab')
  23. Traceback (most recent call last):
  24. File "<pyshell#25>", line 1, in <module>
  25. b'abc'.startswith('ab')
  26. TypeError: startswith first arg must be bytes or a tuple of bytes, not str
  27. >>>
  28. >>> 'abc'.startswith('ab'.encode())
  29. Traceback (most recent call last):
  30. File "<pyshell#27>", line 1, in <module>
  31. 'abc'.startswith('ab'.encode())
  32. TypeError: startswith first arg must be str or a tuple of str, not bytes
  33. >>>

扩展学习

python2中有一种类型叫做unicode型,例


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

两者返回的类型都是unicode型

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


 
  1. type(u"a") => str型
  2. type("a".decode('utf8')) => 报错,python3不能这样写

但是python3中多处一种字符串


 
  1. type(b'132') => byte型

以上就是相关的知识点内容,如果大家有任何补充可以联系我们小编。

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载