4 lines
66 B
Python
4 lines
66 B
Python
x = 1
|
|
while True:
|
|
print(bin(x)[2:].replace('0', ' '))
|
|
x ^= x<<1
|