BASICALLY
MATH LIB
CONDITIONALLY
SPEAKING
FRUITY
LOOPS
A SNAKE
NAMED MONTY
100

The datatype that the input function ALWAYS returns

What is a string?

100

The math library function code that gives the square root of 25

What is math.sqrt(25)

100

The boolean operator that tests whether two values are equal

What is the == operator?

100

The greatest danger of loops

What are infinite loops?

100

The TV show that started Monty Python

What is Monty Python's Flying Circus?

200

The operator for integer division

What is the // operator?

200

The angle for a trigonometric function must always be in these units

What are radians?

200

The number of else statements we can have in a conditional block

What is just one?

200

The statement used to exit a loop immediately.

What is a break?

200

The most famous Monty Python film

What is Monty Python and the Holy Grail?

300

These are the four basic Python datatypes

What are bool, int, float and string?

300

The result of math.ceil(3.215)

What is 4?

300

The result of this expression:

5 > 3 or 2 < 1

What is True?

300

Loop structure that repeats until a condition becomes False

What is a while loop?

300

This is not the right room for...

What is an argument?

400

The operator that concatenates strings together

What is the + (plus) operator?

400

The code to take the natural log of the number 7

What is math.log(7)?

400

The three Python terms that evaluate to False

What are False, 0 and None?

400

Function that yields consecutive integers, often used in a for loop

What is range( )?

400

The best way to get into a fortified French Castle

What is make a giant wooden rabbit (or badger)?

500

The result of the code when 5 is entered:

What is '555'?

500

The function that returns the length of the hypotenuse given legs a and b

What is math.hypot(a,b)?

500

The logical result of the following:

( 8 < 10 ) and ( 15 > 30 )

What is False?

500

The output of the code:

What is:

0

1

2

500

This animal is dead, ceased to be and expired

What is a parrot?

M
e
n
u