Operands and Operators
Basic Functions
Variables
Variable Names
Wild
100

Using the + sign, this operation adds two strings together.

What is Concatenation?

100

This word displays text to the user. 

What is print

100

x=3

height= int(input("How tall is the object?", ))

length = x*1.6+height

In this example height is a ____________.

What is a Variable? 

100

True or False

The following variable is a good variable: x=5

What is False?

There is no way to tell what this variable represents from an outside perspective.

100

This added sequence displays the value that comes after it below the value that comes before it.

What is \n?

200

This sign divides a number and displays the remainder 

What is Modulus Division (%)?

200

This word pauses the program and waits for user input.

What is input?

200

y=6.893

type(y)

<class '______'>

What is a float?

200

True or False

The following variable is NOT a good variable: birthday=input(What is your date of birth?", )

What is False

Just by reading the variable you can determine what it is used for.


200

This symbol when used with a string, affects the amount in which the string is printed.

What is *?

300

This operator divides a value and displays the full number(x) only. (x.y)

What is Floored Division ( // )?

300

If there are multiple of these, they occur one at a time in order of where they are written. 

What is a Statement?

300

author=input("what is your name", )

type(author)

<class '______')

What is str?

300

True or False

The following variable is a good variable: area=height*width

What is True?

This variable is clearly the area of a measured space. 

300

This symbol means that whatever comes after is a comment and will not appear when the program  is run.

What is #?

400

This operator multiplies a value to the power of the next.

What is Exponentiation?

400
This word turns a string into an integer.

What is int?

400

x= input("Please enter a number", )

type(x)

<class '______'>

What is a str?

400

True or False

the following variable is a good variable: 

input=int(input("What is your name?", ))

What is False?

This variable is attempting to use a reserved word.

400

This process reduces the need for comments.

What is Choosing mnemonic variable names?

500

A string, an integer, and a floating point are all__________ or operators.

What are Classes

500

By default, Python uses this process to evaluate mathematic processes. 

What is PEMDAS *or* Order Of Operation?

500

A(n) ______________ creates new variables and gives the values.

What is an Assignment Statement?

500

True or False

This variable is NOT a good variable:

1person=input("Who was the first to arrive to the party?", )

What is True?


This variable places a number as the first character which is something to avoid doing.

500

The process of solving an error.

What is Debugging?

M
e
n
u