1. 数字类型(number): # int 整型 a = 1 type(a) # --> <class 'int'> # float 浮点型 b = 1.0 type(b) # --> <class 'float '> # bool 布尔型,即True和False c = True type(c) # --> <class 'bool '> # 布尔型的补充,几种python默认为True或者False的例子 a = True if a: #...