What is a decimal value in Python?
float
The number 2 based system - the language of the computer
binary
What is % in python?
modulus
Program parts
Input, process, output
In the following equation, which is an operand
print(23 + 44)
23 and 44
A place holder for a value, stores it, and we can change it to something else that we work with in python
Variable
A string in Python can be
numbers, letters, symbols
A reserved word that is used by the compiler to parse a program; you cannot use these as variable names such as print, if, else....
Keyword
What symbol is used for single line comments in Python
#
A sequence of instructions
algorithms
In the following program, what is the operator/
print(7 * 21)
*
Having two possible values called "true" and "false.
Booleans
What will the following print?
x = 20 % 3
print(x)
2
What is the operator for showing that something is equivalent, such as 4 is equal to 2 + 2
= =
Notes added to the program that doesn't execute or show when program's run.
Comments
What indicates that Python is ready to receive data?
>>>
The Python prompt
What does the following arithmetic operation return
(3*5) * 2**2 / 3
20
Code that prints a prompt asking for text from the user
input statement
What is the correct order of operations?
parenthesis, exponents, multiplication and division, addition and subtraction
indicates the type of data that can be stored as a variable value.
data type
not equal to
!=
Adding two Strings together using the '+' operator.
Concatenation
when we process our code
the results that take place after our program has run, for example, could be a printout on the screen
output
the variable name along with the value that has been assigned to it.
assignment statement