Which Python cmd/function allows you to print a string to the console?
What is print()
It checks if a condition is true and executes a block of code accordingly
What is an If statement
Which variable type contains text or sequence of characters?
What is a str (string)
What is something that stores information in a program for use later?
What is a variable
Which python cmd/function allows you to convert a given value into string representation?
What is str()
This keyword is short for "else if" and allows you to check additional
What is elif
Which variable type contains whole numbers?
What is a int (integer)
What is the equals sign (=)?
What is a symbol used to assign a value to a variable.
Which Python cmd/function can be used to find the variables Type (str, int, float, etc)
What is type()
What is a block of code that executes only when all previous conditions are false.
What is an else statement?
What type is the following variable?
x = "Hi there"
What is str
What is a sequence of instructions called?
What is a Program
Which Python cmd/function prints a prompt and retrieves text from the user?
What is input()
An expression that evaluates to either True or False
What is a conditional.
Which variable type can be True or False?
What is a boolean
What is this equal equal sign (==) ?
What is comparison operator?
Which python cmd/function allows you to convert a string into an integer?
What is int()
What is this comparison operator? !=
What is not equal to.
What are the three characteristics of a variable?
Clue ( x = "Hi there" )
What is name, type, value?
What term is used to define the process of joining two string together?
"Hello" + "World"
What is concatenation