python disable warning deprecated

Solutions on MaxInterview for python disable warning deprecated by the best coders in the world

showing results for - "python disable warning deprecated"
Diana
09 Mar 2019
1import warnings
2warnings.filterwarnings("ignore", category=DeprecationWarning) 
3