I created a for-loop that generates a new image every increment. I'm just wondering how I could adjust the images within the loop. Right now, it is just plotting images in a single column. How can I adjust the images in the for-loop so it shows two columns?
for i in range(10):
a = (0 + i, 0, 0, 0)
plt.imshow(a)
plt.title("Hi " + str(i))