python Ignore each of the following characters: " : ; , . - + = / \ | [ ] { } ( ) * ^ & code example
Example 1: python suppress warnings in function
import warnings
warnings.filterwarnings("ignore")
Example 2: python suppress warnings in function
import warnings
def fxn():
warnings.warn("deprecated", DeprecationWarning)
with warnings.catch_warnings():
warnings.simplefilter("ignore")
fxn()