FutureWarning: save 的问题

当我们使用python 写代码的时候,对于文件之中的操作,有一个save 的操作时,

可能会有一个报错的结果

例如

f.close()
FutureWarning: save is not part of the public API, usage can give unexpected results and will be removed in a future version
  f.save()

会有如上的报错结果,此时我们可以将    f.save()  更改为f.close()

这样子就不会报错了

因为save目前已经不公开给用户使用了,使用close时,它内部会调用内部的save。

你可能感兴趣的:(python,numpy,pandas)