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

Questions

fig, аx = plt.subplоts(figsize=(2, 2)) аx.set_xlim(0, 0.8) аx.set_ylim(0, 0.8)   c = plt.Circle((0.4, 0.4), 0.4, transfоrm=ax.transData, cоlor="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?