系统学习Python——警告信息的控制模块warnings:常用函数-[warnings.showwarning]

分类目录:《系统学习Python》总目录


函数

warnings.showwarning(message, category, filename, lineno, file=None, line=None)

将警告信息写入文件。默认的实现代码是调用formatwarning(message, category, filename, lineno, line)并将结果字符串写入file ,默认文件为sys.stderr。通过将任何可调用对象赋给warnings.showwarning可替换掉该函数。

参数

  • line:要包含在警告信息中的一行源代码;如果未提供lineshowwarning()将尝试读取由filenamelineno指定的行。

你可能感兴趣的:(系统学习Python,Python,python,警告,warnings,warn,函数,类)