python 数字类型和字符串类型的相互转换实例

一、python中字符串转换成数字

(方法1)

类中进行导入:import string

str='555'
num=string.atoi(str)

num即为str转换成的数字

转换为浮点数:

string.atof(str) 

(方法2)

直接int

int(str)

二、数字转换成字符串

num=322
str='%d'%num

str即为num转换成的字符串

你可能感兴趣的:(python)