This data type stores whole numbers.
What is an Integer?
This loop is typically used when the number of iterations is known.
What is a for loop?
This data structure stores multiple values in one variable.
What is a list?
This data type stores decimal numbers.
What is a float?
This loop runs as long as a condition is true.
What is a while loop?
This method adds an element to the end of a list.
What is append()?
This function converts a value to a string.
What is str()?
This keyword stops a loop immediately.
What is break?
This index refers to the first element in a list.
What is 0?
This operator performs exponentiation in python.
What is **?
This keyword skips the rest of the current loop iteration.
This method removes an element from a list by value.
What is remove()?
This function returns the type of a variable.
What is type()?
This function generates a sequence of numbers for looping.
This function reurns the number of elements in a list.
What is len()?