Unit 2 Flashcards
Variables and Expressions
2.1 - Variables and Assignments
What is a variable?
a named item that holds a value
2.1 - Variables and Assignments
What are the two types of statements in programming?
declarative: create/assign variables
executable: instructs the computer to perform a task
2.2 - Identifiers
What is an identifier?
the name of a variable
2.2 - Identifiers
What are the requirements of an identifier?
starts with a letter, can use letters, underscores, and numbers, cannot contain spaces
2.2 - Identifiers
IsnumPizzas
the same as numpizzas
?
No
2.3 - Objects
What is an object?
something that represents a value, is mutable
2.3 - Objects
What are the 3 properties of an object?
value, type, and identity
type: int, string, etc.
identity: describes object
value; number
2.3 - Objects
What is mutability?
indicates if an object’s value can be changed
2.4 - Numeric Types: Floating-Point
What is a floating-point number?
comonnly referred to as a float
a number that uses a decimal
ex. 3.14159
2.4 - Numeric Types: Floating-Point
How do you use float()
?
like int()
, it converts numbers to a float
2.4 - Numeric Types: Floating-Point
What is a floating-point literal?
a number with an unnecessary decimal
ex. 99 -> 99.0
2.4 - Numeric Types: Floating-Point
How do you round a float?
within a print statement, to nearest 100th of a decimal
print(f'{myFloat:.2f}')
2.5 - Arithmetic Expressions
What is an expression?
a combination of values that evaluates to a number
like 2 + 2
2.5 - Arithmetic Expressions
What is a literal?
a specific value indepentent of an expression
2 + 2
2.5 - Arithmetic Expressions
What type of precedence rules does Python use?
PEMDAS
parenthesis, exponents, multiplication, division, addition, subtraction
2.6 - Python Expressions
What is a compound operator used for?
a quicker way to type variable = variable + 1
, used as +=
2.7 - Division and Modulo
What is floor division, and what symbol do you use for it
//
divides a number, but rounds the answer downward
5 // 2 = 2
2.7 - Division and Modulo
What is modulo, and what symbol do you use for it?
%
finds the remainder of a division problem
4 % 2 = 0
2.8 - Module Basics
What is a module?
also called a library
a file with pre-written Python code used in other programs; must be imported via dot notation
ex. universe.speed_of_light
2.9 - Math Module
What does the math module do?
allows for more complex mathematical functions
ex. square roots
2.9 - Math Module
What code from the math module would you use for powers? For square roots?
power - x^y
square root - √x
power: math.pow(x, y)
square root: math.sqrt(x)
2.10 - Random Numbers
What code would you use to import the random numbers module?
import random
2.10 - Random Numbers
Why is there no “true random” in computing?
randomization is based on a unique seed that creates a series of psuedo-random numbers
2.10 - Random Numbers
What is the difference between inclusive and exclusive numbers?
inclusive - includes the number in range
exclusive - excludes the number in range