Published
- 1 min read
python disable warning deprecated
The solution for this is noted below
python disable warning deprecated
Solution
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
Try other methods by searching on the site. That is if this doesn’t work