You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
539681fffd
From now on, all new tests must use underscore. Addresses issue #727.
13 lines
197 B
Python
13 lines
197 B
Python
# test builtin bin function
|
|
|
|
print(bin(1))
|
|
print(bin(-1))
|
|
print(bin(15))
|
|
print(bin(-15))
|
|
|
|
print(bin(12345))
|
|
print(bin(0b10101))
|
|
|
|
print(bin(12345678901234567890))
|
|
print(bin(0b10101010101010101010))
|