Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 Python/Pandas 中进行除法(例如 47/100)时,我如何显示答案的十进制值,因为目前它只显示为 0?
提前致谢。
如果您使用的是 python2.x,则需要“浮动”您的数字之一:
float(47)/100 47.0/100
如果除法中的两个数字都是整数,python2.x 将进行整数除法。
1 floatify:强制数字为浮点数