I were searching how create scatterplot between each column with each column. Similar question to this one and I followed the code from answer:
How to make a loop for multiple scatterplots in python?
What I done is:
columns = ['a','b','c','d','e','f']
for pos, axis1 in enumerate(columns):
for axis2 in enumerate(columns[pos+1:]):
plt.scatter(df.loc[:, axis1], df.loc[:, axis2].iloc[:,1])
But in this solution I'm getting everything on one single plot, I want to make it separately, how I can achieve that?

plt.show()afterplt.scatter(inside the two loops)