0

我有一个从 'a' 下面的 csv 构造的 df 应该是双精度的。如果我检查一个?它似乎是一个字符串。在尝试将其转换为 int(a) 时,我收到一个类型错误,我不知道为什么。

   ValueError: invalid literal for int() with base 10: '46.074'

  a=df["MA10"].ix[100]
   a=int(a) 


 Imported:
 df=pd.read_csv('__.csv',header=None,parse_dates=True, index_col={0},names="__".split())
4

2 回答 2

0

使用浮动

In [14]: int('46.074')
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)
<ipython-input-14-f8e7b101e6bd> in <module>()
----> 1 int('46.074')

ValueError: invalid literal for int() with base 10: '46.074'

In [15]: float('46.074')
Out[15]: 46.074
于 2013-04-15T17:13:11.397 回答
0

尝试这个

    int(float('46.074')//1)
于 2013-04-16T13:05:31.017 回答