I'm new to programming may I know why my i is not incrementing in the for loop. I want to update the plot name for each subplot. Thank you.

from matplotlib import pyplot as plt
fig= plt.figure()
fig,axes = plt.subplots(nrows=1, ncols=3,squeeze=False)
fig.tight_layout()
i=0
for current_ax in axes:
current_ax[i].set_title(f"plot: {i}")
i+=1


