Contents:
Return binary string representation of the p-value.
width (int) – Minimum width (right-justified with zeros, default: 0)
int
str
Binary string representation
Examples
>>> p = P(133) >>> p.b() '10000101' >>> p.b(10) '0010000101'