When writing some didactic examples in Python 2.7, I came across the following situation in the following program:
a = 0b101
b = 0b111
c = a+b
print c
The result of this program is 12 (decimal). If I want a binary value to be displayed in t...
asked by
01.05.2017 / 21:10