123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- Module(body=[Print(dest=None,
- values=[BinOp(left=Str(s='%x'),
- op=Mod(),
- right=Num(n=10))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%x'),
- op=Mod(),
- right=Num(n=10))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%x'),
- op=Mod(),
- right=Num(n=100000000000))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%o'),
- op=Mod(),
- right=Num(n=10))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%o'),
- op=Mod(),
- right=Num(n=10))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%o'),
- op=Mod(),
- right=Num(n=100000000000))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%d'),
- op=Mod(),
- right=Num(n=10))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%d'),
- op=Mod(),
- right=Num(n=10))],
- nl=True),
- Print(dest=None,
- values=[BinOp(left=Str(s='%d'),
- op=Mod(),
- right=Num(n=100000000000))],
- nl=True)])
|