5. Variable names

>>> a = 2
>>> price = 500
>>> print(a)
2
>>> print(price)
500
>>> 3x = "text"
    File "<stdin>", line 1
    3x = "text"
     ^
SyntaxError: invalid syntax

Define valid and invalid variables below

You have attempted 1 of 1 activities on this page