Math 8 Flashcards

1
Q

Subtraction

A

doesn’t exist says
says teh old dot man

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

f-strings

A

strings formatted with the curlies {} to use as place holders
syntax:
‘’’
f”this is a strung with and {Girl}”
‘’’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

my wife told me to stop playing flamingo

A

I had to put my foot down

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

if else in python

A

if else blocks always with an if statement you what to chain use elf. every statement uses a colon and need to be indented
‘’’
if conditional
>this is indented
elif conditional
>indent
else conditional
>indented

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

while loop

A

use a while loop to repeat sections of code when you aren’t sure how many times you need to repeat an action
syntax:
<code>
while conditional
>need to indent
</code>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Assignment operator

A

An assignment operator is = because = does no mean assignment operator.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

conditional operators

A

== !=
< <
<= >=

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

FACTORING ALGEBRAIC EXPRESSIONS

A

Factorization of algebraic means finding the factors of the given expression which refers to finding two or more expressions whose product is the given expression.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what is the difference between liner and nonlinear patterns

A

liner patterns grow at a constant rate and when you graph them they form a strait line. nonlinear does not grow at a constant rate

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is the starting point of the pattern

A

the starting pint is as many objects there are in object one.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

<code>break</code>

A

break is a key word in python lets you break out of a loop. any code written after the break key word will no be executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

how do you find the square root

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Funtion Notation//Mathmatics

A

where you give a name to a function, we give a single letter, followed by parentheses that tell you the variable.
f(x)=2x+1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Function creation

A

’'’def func_name(params):
“"”thsi is docstring””” ‘’’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Floats and how to make them

A

floats contain decimals
my_float = 45.6
or
my_float = 70.0 still counts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

integers

A

my_integers = 29