我正在使用pandas v0.20.1。偶尔,我遇到以下问题,由于某种原因,我的程序进入下面的调试模式,无法通过frame.py。我不确定这是否是我的客户端程序的问题,因为相同的代码在大多数其他时间工作没有这个问题。我在这里错过了什么吗?有关如何解决此问题以及洞察潜在根本原因的任何建议都会有所帮助。谢谢。
python script.py
--Call--
> /lib/python3.6/site-packages/pandas/core/frame.py(4424)<genexpr>()
-> for i in range(len(self.columns)))
(Pdb) l
4419 pass
4420
4421 dtype = object if self._is_mixed_type else None
4422 if axis == 0:
4423 series_gen = (self._ixs(i, axis=1)
4424 -> for i in range(len(self.columns)))
4425 res_index = self.columns
4426 res_columns = self.index
4427 elif axis == 1:
4428 res_index = self.index
4429 res_columns = self.columns