A variable name must start with:
A letter or the underscore character
A variable name cannot start with:
A number
A variable name can only contain:
Alpha-numeric characters and underscores
True or False: variable names are not case-sensitive
False
How do you separate words in a variable name?
The underscore character
How do you assign multiple values to multiple variables in one line?
a, b, c = “Yes”, “No”, “Maybe”
True or False: you can assign the same value to multiple variables
True
How do you unpack a collection of values into variables?
fruits = [“apple”, “banana”, “cherry”]
x, y, z = fruits