this is always the first word in a conditional.
What is an 'if' ?
There are this many if clauses in a conditional...
What is 1?
These characters have the highest order of operation in Python. They are the same characters that are first in the order of operations in Math functions as well.
What are parentheses?
This word combines two or more expressions/values and is true if at least one part is True.
What is or?
This happens in the then block if the condition in a conditional is False.
What is the then block is skipped.
What is there is no set number- as many as you need?
The result of 9 / 5
What is 1.8?
This function allows a user to give a response and can be assigned to a variable.
What is input()?
This word combines two or more expressions/values and is True if all parts are True
What is and?
There are this many else clauses in a conditional.
What is one or none at the end?
The result of int(9 / 5)
What is 1 ?
This data type or expression can either be True or False
What is a Boolean expression?
the condition in the clause below:
if num > 14:
What is num > 14?
The condition is everything between the word "if" and the :
This is what is done to change the data type of numbers or data.
What is typecasting?
Tell what is missing:
x = 10
y = 5
if x > y
print("x is bigger than y")
What is a :?
This then block will never execute. Tell why.
if 100 < 10:
print("We did it")
print("Congratulations")
print("the program is finished.")
What is the condition is always false? 100 is never less than 10.
What is the else clause?