Python 中的警告

聖光之護
发布: 2024-10-26 21:54:01
转载
1213人浏览过

python 中的警告

请我喝杯咖啡☕

警告是警报消息,它基本上不会引发异常,也不会终止程序。

警告类别如下所示:

class disposition
warning this is the base class of all warning category classes. it is a subclass of exception.
userwarning the default category for warn().
deprecationwarning base category for warnings about deprecated features when those warnings are intended for other python developers (ignored by default, unless triggered by code in __main__).
syntaxwarning base category for warnings about dubious syntactic features.
runtimewarning base category for warnings about dubious runtime features.
futurewarning base category for warnings about deprecated features when those warnings are intended for end users of applications that are written in python.
pendingdeprecationwarning base category for warnings about features that will be deprecated in the future (ignored by default).
importwarning base category for warnings triggered during the process of importing a module (ignored by default).
unicodewarning base category for warnings related to unicode.
unicodewarning base category for warnings related to unicode.
byteswarning base category for warnings related to bytes and bytearray.
resourcewarning base category for warnings related to resource usage (ignored by default).

warn() 可以手动发出警告,如下所示:

立即学习Python免费学习笔记(深入)”;

*备忘录:

  • 第一个参数是 message(required-type:str)。
  • 第二个参数是类别(可选-默认:无-类型:警告)。 *如果为none,则设置userwarning。
  • 第三个参数是 stacklevel(可选-默认:1-类型:int)。 *它决定警告所指的代码。
  • 第四个参数是源(optional-default:none-type:any)。
  • 有skip_file_prefixes参数(可选-默认:无-类型:str的元组): *备注:
    • skip_file_prefixes=必须使用。
    • 手动设置 none 会出错。
import warnings

warnings.warn(message="This is a warning.")
# UserWarning: This is a warning.
#   warnings.warn(message="This is a warning.")

warnings.warn(message="This is a warning.",
              category=None,
              stacklevel=1,
              source=None,
              skip_file_prefixes=())
# UserWarning: This is a warning.
#   warnings.warn(message="This is a warning.",

warnings.warn(message="This is a warning.",
              category=Warning)
# Warning: This is a warning.
#   warnings.warn(message="This is a warning.",

warnings.warn(message="This is a warning.",
              category=DeprecationWarning)
# DeprecationWarning: This is a warning.
#   warnings.warn(message="This is a warning.",

def test1():
    warnings.warn(message="Warning 1",
                  stacklevel=-100)
    warnings.warn(message="Warning 2",
                  stacklevel=0)
    warnings.warn(message="Warning 3",
                  stacklevel=1)
    warnings.warn(message="Warning 4",
                  stacklevel=2)
    warnings.warn(message="Warning 5",
                  stacklevel=3)
    warnings.warn(message="Warning 6",
                  stacklevel=4)
    warnings.warn(message="Warning 7",
                  stacklevel=5)
    warnings.warn(message="Warning 8",
                  stacklevel=100)
def test2():
    test1()

def test3():
    test2()
test3()
# UserWarning: Warning 1
#   warnings.warn(message="Warning 1",
# UserWarning: Warning 2
#   warnings.warn(message="Warning 2",
# UserWarning: Warning 3
#   warnings.warn(message="Warning 3",
# UserWarning: Warning 4
#   test1()
# UserWarning: Warning 5
#   test2()
# UserWarning: Warning 6
#   test3()
# UserWarning: Warning 7
#   exec(code_obj, self.user_global_ns, self.user_ns)
# UserWarning: Warning 8
登录后复制

以上就是Python 中的警告的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:dev.to网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号