直接看例子:
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‘>
原文地址:http://blog.51cto.com/weiruoyu/2334578
时间: 2024-09-30 03:34:14