The // operation
What is floor division?
Boolean values
What are True and False?
What is a string?
The result of 9%5
What is 4?
This function asks the user for input
This statement checks against another condition after an if statement
What is elif?
This operation is used for both numbers and strings
What is +?
This function determines whether a string contains a numerical value
What is isdigit()?
These statements allow you to test many conditions using cases
What are match cases?
This function converts an integer to a decimal point number
What is float()?
This structure repeats a line or lines of code repeatedly until otherwise told
What is a while loop?
This built-in Python function returns the length of many objects or sequences
What is len()?