Can variable names in Python start with an integer?
Python parser forbids naming variables that way, for the sake of parsing numbers and variables separately, as naming a variable 1e1 would create a chaos – is it the number 10.0 or the variable 1e1? “Python, please output for me 1e1!” – “Why is it 10.0? I stored 100 over there!” But the variables are … Read more