wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Variable Naming Quiz

Total questions: 3

Worksheet time: 2mins

Name
Class
Date
1.

Which of the following is a valid variable name in Python?

a)

2name

b)

full name

c)

user_name

d)

print

2.

What happens if you use a space in a variable name like my score = 10?

a)

Python creates two variables

b)

SyntaxError

c)

Python ignores the space

3.

Which of these follows all Python naming rules?

a)

x

b)

first_name

c)

1st_place

d)

for