int() float() bool() complex() 默认创建一个该数据类型的值 res = int() res = float() res = bool() res = complex() print(res) 二.自动类型转换 Number(int float bool complex) 精度从低向高进行转换: bool -> int -> float ->complex 自动类型转换,默认从低精度向高精度进行转换(从低到...