These numbers scroll vertically down my cmd screen after I hit execute from Geany. Is it possible for python to include numbers next to numbers with a separator, so I know which number to go to in the list? The imoge with the numbers below the sunglasses is what I hope for. Thanks anyone for the help.
262143
131071
65535
32767
16383
1)262143
2)131071
3)65535
4)32767
5)16383
Here is my code:
262143
131071
65535
32767
16383
1)262143
2)131071
3)65535
4)32767
5)16383
Here is my code:
i = int(191561942608236107294793378084303638130997321548169216)
result = 0
while i >= 2 :
print enumerate (i)
i = i // 2
result = result + 1
print (i //result)
print (result)
n = 191561942608236107294793378084303638130997321548169216//8
print (n)
