Python的基本数据类型以及类型转换
2022-07-18 本文已影响0人
刘年年
Python的基本数据类型共有4种
1、int:整数
2、float:浮点类型
3、str:字符串类型
4、bool:取值True或False
python中查看某个数据属于什么类型,使用type()函数
如type('123') <class 'str'>
type(123) <class 'int'>
基本数据类型的转换
bool(0) False
bool(123) True
int('123') str-->int 返回123
str(123) int-->str 返回字符串123