df.to_csv()给出*** TypeError:切片索引必须是整数或无或具有__index__方法

时间:2017-08-15 03:13:55

标签: python pandas dataframe

当我尝试df2.to_csv('abc.csv')时出现上述错误。

更多详情:

(Pdb) type(df2)
<class 'pandas.core.frame.DataFrame'>
(Pdb) df2
   0x01  0x03  0x07  0x0f  0x1f  0x3f  0x7f
0     2   NaN   NaN   NaN   NaN   NaN   NaN
1    10     2     5     2     4     4   NaN
2    26     4    17    16    25    10     1
3    12    11    25    13    31    21     7
4    10    37    24    22    18    37    33
5    10    39    23    21    13    15    27
6    22     7     5    11     5     3    23
7     8   NaN   NaN     4     3     3     6
8   NaN   NaN     1    11     1     7     3

[9 rows x 7 columns]
(Pdb) df2.to_csv('abc.csv')
*** TypeError: slice indices must be integers or None or have an __index__ method
(Pdb)

我没有切片......所以错误没有意义。

0 个答案:

没有答案