This is a syntax error because the language specification does not allow identifiers to begin with a digit. Thus, it is not possible to have function names (which are identifiers) that start with numbers in Python.
identifier ::= (letter|"_") (letter | digit | "_")*
Python 2 Reference
ASCII (U + 0001..U + 007F) , Python 2.x: A Z, _ , 0 9.
Python 3