1. from PIL import Image
    2. bcg = Image.open("backgrd.png")
    3. fig,ax =plt.subplots()
    4. ax.imshow(bcg)
    5. plt.show()