假设,我有一个十进制扩展 2.896。我想将其转换为 2896 之类的东西。如何在 Python 中实现这一点?
这个;
n = 2.896 n1 = int(str(n).replace(".",""))