NumPy - Creating Arrays
You have a nested list representing monthly sales for 3 stores over 4 months:
How can you create a numpy array and find the average sales per month across all stores?
sales = [[100, 120, 130, 140], [90, 110, 115, 130], [80, 105, 125, 135]]
How can you create a numpy array and find the average sales per month across all stores?
