mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
9 lines
199 B
Python
9 lines
199 B
Python
# Integer literals
|
|
assert 0b101010 == 42
|
|
assert 0B101010 == 42
|
|
assert 0o777 == 511
|
|
assert 0O777 == 511
|
|
assert 0xcafebabe == 3405691582
|
|
assert 0Xcafebabe == 3405691582
|
|
assert 0xCAFEBABE == 3405691582
|