Import warnings module in your Jupyter Notebook by usingimport warnings. And addwarnings.filterwarnings('ignore')code snippet in the cell you got warning message and execute that cell. All warning message now will be hidden. Note : The warnings module is a built-in Python library that allows...