python中str与int类型的相互转换
1. str转换成int
方法:使用int()函数文章来源:https://www.toymoban.com/news/detail-644259.html
# python中str转换成int
a='12'
b=int(a) # 转换成10进制str对应的int
c=int(a,16) # 转换成16进制str对应的int
print(type(b)) # <class 'int'>
print(b) # 12
print(type(c)) # <class 'int'>
print(c) # 18
3. int转换成str
方法:使用str()函数文章来源地址https://www.toymoban.com/news/detail-644259.html
# python中int转换成str
d=12
e=str(d) # 转换成int对应10进制的str
f=hex(d) # 转换成int对应16进制的str
print(type(e)) # <class 'str'>
print(e) # 12
print(type(f)) # <class 'str'>
print(f) # 0xc
到了这里,关于python中str与int类型的相互转换的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!