Python Practice Quiz - 1

Answer all questions and submit to see your score.

1 Single Answer

What is a variable in Python?

2 Single Answer

What will this print? x = 10 y = "10" print(type(x), type(y))

3 Single Answer

What is the difference between / and // in Python?