123456789101112131415161718192021222324252627282930 |
- Module(body=[Assign(targets=[Name(id='x',
- ctx=Store())],
- value=List(elts=[Num(n=0),
- Num(n=1),
- Num(n=2)],
- ctx=Load())),
- Print(dest=None,
- values=[Name(id='x',
- ctx=Load())],
- nl=True),
- Expr(value=Call(func=Attribute(value=Name(id='x',
- ctx=Load()),
- attr='insert',
- ctx=Load()),
- args=[Num(n=2),
- Call(func=Attribute(value=Name(id='x',
- ctx=Load()),
- attr='pop',
- ctx=Load()),
- args=[Num(n=0)],
- keywords=[],
- starargs=None,
- kwargs=None)],
- keywords=[],
- starargs=None,
- kwargs=None)),
- Print(dest=None,
- values=[Name(id='x',
- ctx=Load())],
- nl=True)])
|