fig, ax = plt.subplots(figsize=(2, 2))ax.set_xlim(0, 0.8)ax….

fig, ax = plt.subplots(figsize=(2, 2))ax.set_xlim(0, 0.8)ax.set_ylim(0, 0.8)c = plt.Circle((0.4, 0.4), 0.4, transform=ax.transData, color=”red”, alpha=0.1)d = plt.Circle((0.5, 0.5), 0.4, transform=ax.transAxes, color=”blue”, alpha=0.1) Which one of the two circles will appear bigger when plotted?