파이썬 파일을 실행하면 경고 오류가 계속해서 나오네요. 너무 우울해서 무시해도 될 것 같았습니다.
이러한 경고를 무시하는 방법은 다음과 같습니다.
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에서 보고한 경고 오류를 무시할 수 있습니다.