Python 3.5.1与3.5.2-浮点数的字符串

时间:2019-05-23 15:18:55

标签: python python-3.x string floating-point

我正在使用以下代码将字符串转换为浮点数。

number = "2.05"
float_val = float(number)
print(float_val)

当我使用Python 3.5.2运行此代码时,输​​出如下所示 enter image description here

我在使用Python 3.5.1的另一台计算机上运行相同的代码,输出如下 enter image description here

我的预期输出与Python 3.5.2相同。应该怎么办?

预先感谢

0 个答案:

没有答案