Using the + sign, this operation adds two strings together.
What is Concatenation?
This word displays text to the user.
What is print
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?
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.
This added sequence displays the value that comes after it below the value that comes before it.
What is \n?
This sign divides a number and displays the remainder
What is Modulus Division (%)?
This word pauses the program and waits for user input.
What is input?
y=6.893
type(y)
<class '______'>
What is a float?
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.
This symbol when used with a string, affects the amount in which the string is printed.
What is *?
This operator divides a value and displays the full number(x) only. (x.y)
What is Floored Division ( // )?
If there are multiple of these, they occur one at a time in order of where they are written.
What is a Statement?
author=input("what is your name", )
type(author)
<class '______')
What is str?
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.
This symbol means that whatever comes after is a comment and will not appear when the program is run.
What is #?
This operator multiplies a value to the power of the next.
What is Exponentiation?
What is int?
x= input("Please enter a number", )
type(x)
<class '______'>
What is a str?
True or False
the following variable is a good variable:
input=int(input("What is your name?", ))
This variable is attempting to use a reserved word.
This process reduces the need for comments.
What is Choosing mnemonic variable names?
A string, an integer, and a floating point are all__________ or operators.
What are Classes
By default, Python uses this process to evaluate mathematic processes.
What is PEMDAS *or* Order Of Operation?
A(n) ______________ creates new variables and gives the values.
What is an Assignment Statement?
True or False
This variable is NOT a good variable:
1person=input("Who was the first to arrive to the party?", )
This variable places a number as the first character which is something to avoid doing.
The process of solving an error.
What is Debugging?