123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- Module(body=[Assign(targets=[Name(id='big',
- ctx=Store())],
- value=Num(n=123456789012345678901234567890)),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%5d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%31d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%32d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%-32d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%032d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%-032d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%034d'"),
- op=Mod(),
- right=UnaryOp(op=USub(),
- operand=Name(id='big',
- ctx=Load())))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%034d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%0+34d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%+34d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%34d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%.2d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%.30d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%.31d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s="'%32.31d'"),
- op=Mod(),
- right=Name(id='big',
- ctx=Load()))],
- nl=True)])
|