python 基础知识之除法
2022-06-29 本文已影响0人
Q_Mia
python中使用除法后,结果是float类型,如果想得到一个int类型的结果可以使用"//"
print(type(1//1)) //<class 'int'>
print(type(1/1)) //<class 'float'>
print(type(1//0.5)) //<class 'float'>
print(type(1//1)) //<class 'int'>
print(type(1/1)) //<class 'float'>
print(type(1//0.5)) //<class 'float'>