数字(Number):int整数,float:浮点小数
字符串(String):str
布尔(Bool):true/false
列表(List):[1,2,3]
元组(Tuple):(1,2,3)
集合(Set){1,2,3}
字典(Dictionary):{'a':1,'b':2)
int float 1 1.1
string ‘’
bool True False
NoneType
list []
dict {key:value}
tuple ()
set {}
整数 int
浮点数 flot
字符串 str
列表 list
字典 Dictionary
元组 Tuple
布尔 bool
集合 set
整数型,浮点型,字符型,布尔型,列表,数组,字典,元组,集合
Number(数字(包含整数和浮点))
String(字符串"")
bool (布尔true/false)
List(列表[1,2,3])
Tuple(元组(1,2,3))
Set(集合{1,2,3})
Dictionary(字典{'name':1,'age':2})