标签: python printing casting floating-point int
为什么
int((1 - 0.1)*100)
结果为90,而
90
int((1 - 0.05 - 0.05)*100)
结果为89?
89