首页 > 编程语言 > 详细

python 字符串 类型互相转换 str bytes 字符串连接

时间:2018-12-24 18:04:31      阅读:112      评论:0      收藏:0      [点我收藏+]
直接看例子:

n = 888
print bytes(n)+str1
print str(n)+str1
print type(n)
n = bytes(n)
print type(n)
n = str(n)
print type(n)

查看结果

8881234567
8881234567
<type ‘int‘>
<type ‘str‘>
<type ‘str‘>

python 字符串 类型互相转换 str bytes 字符串连接

原文:http://blog.51cto.com/weiruoyu/2334578

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!