variables
data types
python syntax
100

What symbol is used to assign a value to a variable in Python?


what is equal sign (=)

100

What data type is the value stored in x?

x = 42



what is integer , or int

100

What symbol is used to start a comment in Python?

what is a hash tag (#)
200

age = 16

What value is stored in age?


what is 16

200

What data type is the value stored in x?

x = 3.14

what is float

300

what is the value of total?

a = 5

b = 8

total = a + b

what is 13

300

What data type is the value stored in x?

x = "python"

what is a string

400

Which variable name is invalid?


A) student_name

B) student1

C) 1student

D) studentName

what is C (1student)

400

What data type is the value stored in x?

x = False

what is a boolean
500

What is the final value of x?


x = 10

x += 5

x *= 2


What is 30

M
e
n
u