I am using the python shell to figure out how the print command works in python.
When I type in
print 01
1
print 010
8
print 0100
64
print 030
24
What's going on here? Is it just base 2? Why does the "one" in the second position print as 8? Shouldn't it be 2 if it's binary?