标签: python debugging pycharm
当我尝试在pycharm监视列表中监视变量值时。它显示了诸如_AXIS_NAMES_, _AXIS_NUMBER, AXIS_*之类的不良值和其他不良值的列表(请参见下图)。我怎样才能只看到变量的数据值。 示例:
_AXIS_NAMES_, _AXIS_NUMBER, AXIS_*
training_data = pd.read_csv("keystats.csv", index_col='Date')
当我将training_data添加到监视列表时,它显示了不想要的值的列表,如您在所附图像中看到的那样。我只想查看列和行。
I just want to view columns and rows. The other values like _AXIS_* is not important to me at this moment
_AXIS_*
enter image description here