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


Python ast.AugAssign用法及代码示例


用法:

class ast.AugAssign(target, op, value)

增强分配,例如 a += 1 。在以下示例中,targetxName 节点(具有 Store 上下文),opAdd ,而 value 是值为 1 的 Constant

Assign 的目标不同,target 属性不能属于 TupleList 类。

>>> print(ast.dump(ast.parse('x += 2'), indent=4))
Module(
    body=[
        AugAssign(
            target=Name(id='x', ctx=Store()),
            op=Add(),
            value=Constant(value=2))],
    type_ignores=[])

相关用法


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