Matplotlib - Image Display
After executing the following code, what will be the shape of
blue_channel?import numpy as np img = np.random.rand(200, 100, 3) blue_channel = img[:, :, 2]
