Python-数据类型
内置数据类型
-
数字
-
整数
int
; -
浮点
float
; -
复数
complex
,格式:
a+bj
; -
布尔
bool
,格式:
True
&False
.
-
-
字符串
-
列表
-
元组
-
集合
-
字典
显式类型转换
int()
;float()
;bool()
-- 将任何类型"0"和"空"的数据转换为布尔值.
数字
整数 int
;
浮点 float
;
复数complex
,
格式: a+bj
;
布尔bool
,
格式: True
&False
.
字符串
列表
元组
集合
字典
int()
;float()
;bool()
-- 将任何类型"0"和"空"的数据转换为布尔值.