NumPy - Creating Arrays
You have a list of lists representing daily temperatures for a week:
How can you convert this into a numpy array and find the average temperature for each day?
temps = [[20, 22, 19], [21, 23, 20], [19, 21, 18], [22, 24, 21], [20, 22, 19], [18, 20, 17], [21, 23, 20]]
How can you convert this into a numpy array and find the average temperature for each day?
