Strings and Things
Do That Again
Potpourri
It Depends
Operator
100

Python method for making a string all lower case.

What is string.lower()?

100

In programming, it's what we call the process of doing a task repeatedly.

What is iteration?

100

This keyword starts every Python function.

What is def?

100

You can execute different code in different situations using this type of expression.

What is conditional?

100

This character serves as the multiplication operator in Python

What is the asterisk?

200

To make Python treat a single quote as a character rather than ending a string, place this character before it.

What is backslash (\)?

200

This type of loop allows us to do something to each element in a collection (for instance, a list of integers).

What is a for loop?

200
This Netherlander and former Dropbox employee formerly held the title of Python's Benevolent Dictator for Life.

Who is Guido van Rossum

200

This keyword is used to indicate that the following code should be executed only if no other conditions are met.

What is else?

200
This character is the python assignment operator, used to create a variable.

What is the equal sign (=)?

300

Use this function to ask a user to enter data in the console.

What is input()?

300

Don't forget to do this to the control variable to avoid an infinite loop.

What is increment (change)?

300

The Python programming language is named for this British comedy troop.

What is Monty Python?

300

Prefix this keyword to a condition to prevent it executing if any previous condition has been met.

What is elif?

300

When placed between two numbers, will return the remainder when the first is divided by the second.

What is modulus (%)?

400

To substitute variables or expressions into a string, prefix it with this letter.

What is 'f'?

400

This is the usual way of doing a task indefinitely in Python.

What is while True:?

400

This software layer allows the same python code to run on any supported hardware and operating system.

What is the interpreter?
400

This character must end any conditional expression.

What is a colon (:)?

400

Use these two characters to verify that two expressions are not equal to each other.

What are exclamation point and equal sign?

500

To convert a user entered number to an integer, use this function.

What is int()?

500

This function creates an utterable list of integers that can be useful in for loops.

What is range()?

500

Python programmers don't have to declare the types of their variables due to its use of this system of typing.

What is dynamic (duck) typing?

500

This condition will execute code only if the variable n is an even integer.

What is if n % 2 == 0?

500
Use this character twice to raise the preceding number to the power of the following number.

What is asterisk?