Create a 2-by-3 array containing the first six powers of 2 beginning with 20.
Python Question # 1: (Filling arrays) Fill a 2-by-3 array with ones, a 3-by-3 array with zeros and a 2- by-5 array with 7s. Question # 2: (Broadcasting) Use arange to create a 2-by-2 array containing the numbers 0–3. Use broadcasting to perform each of the following operations on the original array: a) Cube every […]