Python数据类型转换

int()将数字串或者浮点数转换为整数

>>> a=’520′
>>> b=int(a)
>>> a,b
(‘520’, 520)

>>> c=1.56
>>> d=int(c)
>>> c,d
(1.23, 1)

float()将字符串或整数转换成浮点数(小数)

>>> a=’520′
>>> b=float(a)
>>> a,b
(‘520’, 520.0)
>>> c=520
>>> d=float(c)
>>> c,d
(520, 520.0)

str()将一个数或者其他类型转换成一个字符串

>>> a=520
>>> b=str(a)
>>> a,b
(520, ‘520’)

判断数据类型

第一种方法

>>> type(a)
<class ‘int’>
>>> type(b)
<class ‘str’>

第二种方法

一致则为ture,否则为false

>>> isinstance(a,str)
False
>>> isinstance(a,int)
True


「 文章如果对你有帮助,请点个赞哦^^ 」 

0