DeprecationWarning怎么不展示
时间: 2023-03-25 14:02:17 浏览: 160
如何不让php显示warning,deprecated字样
5星 · 资源好评率100%
DeprecationWarning 是 Python 中的一个警告信息,通常表示某个函数或模块即将被废弃,不建议使用。如果你想要展示 DeprecationWarning,可以在代码中加入以下语句:
import warnings
warnings.filterwarnings("default", category=DeprecationWarning)
这样就可以将 DeprecationWarning 展示出来了。
阅读全文