variables
What symbol is used to assign a value to a variable in Python?
what is equal sign (=)
What data type is the value stored in x?
x = 42
what is integer , or int
What symbol is used to start a comment in Python?
age = 16
What value is stored in age?
what is 16
What data type is the value stored in x?
x = 3.14
what is float
what is the value of total?
a = 5
b = 8
total = a + b
what is 13
What data type is the value stored in x?
x = "python"
what is a string
Which variable name is invalid?
A) student_name
B) student1
C) 1student
D) studentName
what is C (1student)
What data type is the value stored in x?
x = False
What is the final value of x?
x = 10
x += 5
x *= 2
What is 30