Exercise for reference:

a = 1
_a = 2
_a2 = 3
2a = 4

Answer:

Line 4 throws a SyntaxError because variables cannot start with a number.

Explanation:

Variablenames must start with a letter or an underscore. Everything else will throwa SyntaxError.