I've been playing around with namedtuples from collections in classes, and came across this simpler 'syntactic sugar' naming assignment, but when I assign foo to 009 and try to put it into the tuple it doesn't work. Am I simple, or can someone explain to me this is borken, and the snakes will not eat me for missing the obvious?
foo = 999
#foo = 009
var = main, x, y, z, a = 'this', 10, 9, 8, foo
print('content: ', var)
print(main)
print(a, x, y, z)