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 of activities on this page