Python 1
python 2
python 3
python 4
python 5
100

What are examples data types?

Different types of data distinguished by Python (String, int, float, boolean)

100

What is an algorithm?

A list of instructions to solve problems or perform a task

100

What command do you get user response?

 input()

100

What is a variable?

Allows us to store information which can be changed

100

What is the results/output side of our coding screen called?

The Console

200

What data type is text?

 strings

200

What is missing in this line of code:

print(hello world")

 opening quotes

200

What is the keyword to define a function?

def

200

What symbol will multiply numbers?

 *

200

What does an empty print() statement do?

Skips a line

300
What is the result of: print(5+3)


 8

300

What does the == operator do?

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

300
How do we convert another data type into a String?

str()

300

Plrinting a string always requires quotes around it "Like this!"

When does can you use the print function without quotes?

Printing a variable!

Example:

name = "Bryce Chalmers"

print(name)

300

What comes after an if statement?

 elif statement or else

400
What is the result of: print("5"+"3")

53

400

How would you convert the following user input line into a number that you can perform math operations on?

age = input("How old are you? ")

Put the input() function inside the int() function!

age = int(input("How old are you? "))

400

What symbol comes after an if statement?

 :

M
e
n
u