标签:ar sp strong on bs tt nbsp python type
string → int
1、10进制的string转化为int
int(‘12‘) → type(int(‘12‘)) 进行验证
2、16进制的string转化为int
int(‘12‘, 16)
int → string
1、int转化为10进制的string
s1 = str(18)
print s1 #输出 18
2、int转化为16进制的string
tt = hex(18)
print tt #输出0x12
标签:ar sp strong on bs tt nbsp python type
原文地址:http://www.cnblogs.com/dtest/p/4165368.html