for i in range(1,151):
Path = './Result/Normal_%d'%i
Normal_i.to_csv(Path, sep=',' , header=None , index=None)
I would like to use for loop to save a file that is name Normal_1, Normal_2 ...Normal_150 and I found out that using "Normal_i" in for loop makes an error. What Can I do to save a file that is named Normal_1, Normal_2 in for loop?