Consider the following code: import matplotlib.pyplot as pl…

Consider the following code: import matplotlib.pyplot as pltfig, ax = plt.subplots(figsize=(6, 4))ax.set_xlim(0, 3)ax.set_ylim(0, 2)circle1 = plt.Circle((1, 1), 1.2, color=”red”, transform=ax.transData, alpha=0.5)ax.add_artist(circle1)circle2 = plt.Circle((0.5, 0.5), 0.2, color=”blue”, transform=ax.transData, alpha=0.5)ax.add_artist(circle2)circle3 = plt.Circle((1, 1), .10, color=”green”, transform=ax.transAxes, alpha=0.5)ax.add_artist(circle3)circle4 = plt.Circle((0.5, 0.5), 0.2, color=”orange”, transform=ax.transAxes, alpha=0.5)ax.add_artist(circle4)plt.show()   What is the color of the largest circle?