Answer:
1.)
import math
def min_max(lst):
minimum = math.inf
maximum = -math.inf
for x in lst:
if minimum > x:
minimum = x
elif maximum < x:
maximum = x
return minimum, maximum
2.)
def deltaGrade(lst):
sm = 0 #sm is sum
sm += x
mean = sm/len(lst)
deltaG = 75 - mean
return deltaG
C, Both of these.
Explanation:
You can take notes either way. It's just your preference. Hope this helps :)
cvm is good cvm is great
control and shift
the answer is "Learning to lead in a technical word".