I am working on a small application that retrieves data from a list stored in a list, passes it through the init class, and then displays / allows the user to work. Everything went well until I tried to format the original “list” in IDLE so that it was easier to read (for me). so I would change from 9 to 09, from 8 to 08. etc. It was a simple form / interval change, and it broke the whole damn program, citing an "invalid token." This is WTF, I thought. So, I opened the interpreter and started typing:
>x = [5,5]
>x
[5, 5]
>>> y=[05,05]
>>> y
[5, 5]
>>> z = [05, "ge"]
>>> z
[5, 'ge']
> a = ["ge", 09]
SyntaxError: invalid token
>>> b= ["ge", 9]
>>> b
['ge', 9]
, ... ? python "", , , ?