How do you express an integer as a binary number with Python literals?
I was easily able to find the answer for hex:
>>> 0x12AF 4783 >>
I am pretty sure this is one of the things due to change in Python 3.0 with perhaps bin() to go with hex() and oct().
EDIT: lbrandy's answer is correct in all cases.