Python Commands
Conditionals
Variables
Terminology
100

Which Python cmd/function allows you to print a string to the console?

What is print()

100

It checks if a condition is true and executes a block of code accordingly

What is an If statement

100

Which variable type contains text or sequence of characters? 

What is a str (string)

100

What is something that stores information in a program for use later? 

What is a variable

200

Which python cmd/function allows you to convert a given value into string representation?

What is str()

200

This keyword is short for "else if" and allows you to check additional

What is elif

200

Which variable type contains whole numbers?

What is a int (integer)

200

What is the equals sign (=)?

What is a symbol used to assign a value to a variable.

300

Which Python cmd/function can be used to find the variables Type (str, int, float, etc)

What is type()

300

What is a block of code that executes only when all previous conditions are false.

What is an else statement?

300

What type is the following variable? 

x = "Hi there"

What is str

300

What is a sequence of instructions called? 

What is a Program

400

Which Python cmd/function prints a prompt and retrieves text from the user?

What is input()

400

An expression that evaluates to either True or False

What is a conditional.

400

Which variable type can be True or False? 

What is a boolean

400

What is this equal equal sign (==) ?

What is comparison operator?

500

Which python cmd/function allows you to convert a string into an integer? 

What is int()

500

What is this comparison operator? !=

What is not equal to.

500

What are the three characteristics of a variable? 

Clue ( x = "Hi there" )

What is name, type, value?

500

What term is used to define the process of joining two string together? 

"Hello" + "World"

What is concatenation