Python method for making a string all lower case.
What is string.lower()?
In programming, it's what we call the process of doing a task repeatedly.
What is iteration?
This keyword starts every Python function.
What is def?
You can execute different code in different situations using this type of expression.
What is conditional?
This character serves as the multiplication operator in Python
What is the asterisk?
To make Python treat a single quote as a character rather than ending a string, place this character before it.
What is backslash (\)?
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?
Who is Guido van Rossum
This keyword is used to indicate that the following code should be executed only if no other conditions are met.
What is else?
What is the equal sign (=)?
Use this function to ask a user to enter data in the console.
What is input()?
Don't forget to do this to the control variable to avoid an infinite loop.
What is increment (change)?
The Python programming language is named for this British comedy troop.
What is Monty Python?
Prefix this keyword to a condition to prevent it executing if any previous condition has been met.
What is elif?
When placed between two numbers, will return the remainder when the first is divided by the second.
What is modulus (%)?
To substitute variables or expressions into a string, prefix it with this letter.
What is 'f'?
This is the usual way of doing a task indefinitely in Python.
What is while True:?
This software layer allows the same python code to run on any supported hardware and operating system.
This character must end any conditional expression.
What is a colon (:)?
Use these two characters to verify that two expressions are not equal to each other.
What are exclamation point and equal sign?
To convert a user entered number to an integer, use this function.
What is int()?
This function creates an utterable list of integers that can be useful in for loops.
What is range()?
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?
This condition will execute code only if the variable n is an even integer.
What is if n % 2 == 0?
What is asterisk?