DEV Community

Alllice
Alllice

Posted on

Answer: How to suppress Pandas Future warning ?

Found this on github...

import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)

import pandas

Top comments (0)