浮点类型 表示方法:带小数的数字,或者使用float()函数 print(1.2) print(float(1.2)) print(float('1.2')) ''' output: 1.2 1.2 1.2 ''' 回索引目录