Are you my type
Can we talk?
Blinded by the light
Traffic control


Pieces of python
100

Name 3 Python data types

What is  (String, int, boolean, float, list, tuple, dictionary)

100

Command used to ask the user a question

What is Input? 

100

name a command used to convert a variable from text to number.

 What is int()?

100
This allows us to store information in a program

What is a variable?

100

The symbol that indicates a multi-line comment or block comments. 

 What is hashtag? #

200

The datatype name for text

 What is string?

200

Command used to give an answer to a question

 What is print?

200

Name a command to convert a number to text

What is str()

200

The symbol for multiplication in Python

What is an asterisk?  *

200

What does an empty print() statement do when ran?

Skips a line

300

The data type for 3.56. 

What is float

300

Two place the print command can output. 

What is file and screen?

300

The datatype a variables content must be to print to the screen. 

 What is text or string?

300

A statement starting with this keyword allows a block of code to be executed based on a condition

what is an IF statemen?

300

Name 2 commands used tor conditions

 What are if, elif, else, while, for?

400
The result of: print("5"+"3")


What is  53?

400

Checks if the two values are equal and returns true or false

What does the == operator do?

400

The datatype a variable's content must be to perform addition or other calculations. 

What is int(), float, etc.?  (any numerical type is allowed, including date) 

400

A condition is: 

A statement that is either True or False

400

This keyword in programming is used to define an alternative block of code that executes when a preceding if condition evaluates to false

what is an else statement?

500

The datatype of 5

What is integer?

500

The character that indicates a comment  in Python

What is  hashtag  #?

500

Command used to generate a random number

what is Random.randint()?

500

The symbol comes after an if statement

What is a colon?    :

500

This command starts a module.

What is def()? 

M
e
n
u