Python ファイルを実行していて、警告エラーが何度も表示され、とても落ち込んでいたので、これらのエラーは無視してもいいと思いました。
これらの警告を無視する方法は次のとおりです。
python -Wignore yourscript.py
import warnings def fxn(): warnings.warn("deprecated", DeprecationWarning) with warnings.catch_warnings(): warnings.simplefilter("ignore") fxn()
上記の方法を使用したくない場合は、Python ソース コードの先頭に次のコードを直接追加できます:
import warnings warnings.filterwarnings("ignore")
こうすれば、Python の警告を無視できます。間違っています