Quickies
[
categories
] [
index
] [
all (553)
] [
latest
]
Python
Print in binary format
>>> "{0:b}".format(37) '100101' >>> bin(10) '0b1010'