Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 188 Bytes

773-string-bin.markdown

File metadata and controls

13 lines (9 loc) · 188 Bytes

BIN

s = BIN (x)

Returns the binary value of x as string.

Example

print hex(255)      ' output: FF
print bin(8)        ' output: 1000
print oct(16)       ' output: 20