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


Python ast.List用法及代码示例


用法:

class ast.List(elts, ctx)
class ast.Tuple(elts, ctx)

列表或元组。 elts 保存代表元素的节点列表。如果容器是分配目标(即 (x,y)=something ),则 ctxStore,否则为 Load

>>> print(ast.dump(ast.parse('[1, 2, 3]', mode='eval'), indent=4))
Expression(
    body=List(
        elts=[
            Constant(value=1),
            Constant(value=2),
            Constant(value=3)],
        ctx=Load()))
>>> print(ast.dump(ast.parse('(1, 2, 3)', mode='eval'), indent=4))
Expression(
    body=Tuple(
        elts=[
            Constant(value=1),
            Constant(value=2),
            Constant(value=3)],
        ctx=Load()))

相关用法


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