Python Tutorial #7

To plot a bar chart using the given lists, To give a Title to the bar chart named “NO. of Electronic Items’ import matplotlib.pyplot as p QTY=[1,4,7,9,11] ITEM_NM=[‘TV’,’AC’,’COOLER’,’FREEZE’,’COMPUTER’] Statement 1. Statement 2 . PL.show() d) Find out the output of the following code. import numpy as np. a2=np.array([[5,7,2],[8,9,1],[1,2,3]]) sub_a2=a2[:2,:] sub_a2[1,1 ... ................
................