how to avoid deprecation warning in python

109

how to avoid deprecation warning in python -

import warnings
warnings.filterwarnings("ignore")

python disable warning deprecated -

import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning) 

Comments

Submit
0 Comments