当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python ast.Assert用法及代码示例


用法:

class ast.Assert(test, msg)

一个断言。 test 保存条件,例如 Compare 节点。 msg 保存失败消息。

>>> print(ast.dump(ast.parse('assert x,y'), indent=4))
Module(
    body=[
        Assert(
            test=Name(id='x', ctx=Load()),
            msg=Name(id='y', ctx=Load()))],
    type_ignores=[])

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 ast.Assert。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。