The datatype that the input function ALWAYS returns
What is a string?
The math library function code that gives the square root of 25
What is math.sqrt(25)
The boolean operator that tests whether two values are equal
What is the == operator?
The greatest danger of loops
What are infinite loops?
The TV show that started Monty Python
What is Monty Python's Flying Circus?
The operator for integer division
What is the // operator?
The angle for a trigonometric function must always be in these units
What are radians?
The number of else statements we can have in a conditional block
What is just one?
The statement used to exit a loop immediately.
What is a break?
The most famous Monty Python film
What is Monty Python and the Holy Grail?
These are the four basic Python datatypes
What are bool, int, float and string?
The result of math.ceil(3.215)
What is 4?
The result of this expression:
5 > 3 or 2 < 1
What is True?
Loop structure that repeats until a condition becomes False
What is a while loop?
This is not the right room for...
What is an argument?
The operator that concatenates strings together
What is the + (plus) operator?
The code to take the natural log of the number 7
What is math.log(7)?
The three Python terms that evaluate to False
What are False, 0 and None?
Function that yields consecutive integers, often used in a for loop
What is range( )?
The best way to get into a fortified French Castle
What is make a giant wooden rabbit (or badger)?
The result of the code when 5 is entered:

What is '555'?
The function that returns the length of the hypotenuse given legs a and b
What is math.hypot(a,b)?
The logical result of the following:
( 8 < 10 ) and ( 15 > 30 )
What is False?
The output of the code:

What is:
0
1
2
This animal is dead, ceased to be and expired
What is a parrot?