Basics
Strings
Numbers
Functions
Variables
100

Name one thing Python can be used to build.

Legit anything.

100

What is a string?

A series of numbers, letters, or symbols connected in order (usually to form words)

100

Name the two objects that can be used for numbers in Python.

Integers and floats

100

What does the print() function do?

How the computer/program speaks - it displays whatever is inside.

100

Give one example of how a variable can be used.

Variables are used to deal with data that changes over time

OR

Variables are used to deal with an object you’d like to refer to multiple times


200

What family of programming languages does Python belong to?

C ➝ it is C-based

200

Write a string and share your screen to show it to us.

Needs: starting quotation mark, text in between, ending quotation mark

200

Give two examples of an integer and two examples of a float.

You got this!

200

What does the input() function do?

It asks the user a question and allows them to input an answer.

200

Give three examples of possible variable names.

Legit anything!

300

Are dogs or cats better? Be warned, there is a correct answer!

Dogs, obviously.

300

Concatenate two strings in a notebook and show it to us.

Ex: "Hello," + "world."

300

Is 7. an integer or a float?

A float - it has a decimal!

300

Use the print() function to display something and show it to us.

Have fun!

300

Assign an integer to a variable and show us.

Ex: x=92

400

What cookie did a majority of our class say was their favorite last week?

Chocolate chip, but I still stand by oatmeal raisin

400

Create a variable and assign a string to it. Then, use an f-string to format the string so that the variable appears inside it. Share your screen and show us!

Ex: x='in'

f"I live {x} New York."

400

Add two numbers together. Then multiply them. Show us on your screen!

Ex: 7+8; 7*8

400
Use the input function to ask a question and get a response. Assign that response to a variable, then print the response.

You got this!

400

Assign a float to a variable. Then, add another number to that variable. Share your screen and show us!

Ex: x=8.3

x += 5.3