1234567891011121314151617181920 |
- Module(body=[Assign(targets=[Name(id='x',
- ctx=Store())],
- value=BinOp(left=List(elts=[Num(n=10)],
- ctx=Load()),
- op=Mult(),
- right=Num(n=5))),
- AugAssign(target=Subscript(value=Name(id='x',
- ctx=Load()),
- slice=Slice(lower=None,
- upper=Num(n=3),
- step=None),
- ctx=Store()),
- op=Add(),
- value=List(elts=[Num(n=100),
- Num(n=100)],
- ctx=Load())),
- Print(dest=None,
- values=[Name(id='x',
- ctx=Load())],
- nl=True)])
|