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'>
本文标题:python 基础知识之除法
本文链接:https://www.haomeiwen.com/subject/igytbrtx.html
网友评论