Python局部屏蔽警告的方法

参考链接: Python Examples of warnings.catch_warnings (programcreek.com)

import warnings

with warnings.catch_warnings():
    warnings.simplefilter('ignore', category=RuntimeWarning)
    pass

你可能感兴趣的:(Python局部屏蔽警告的方法)