array = ["Var1","Var2","Var3"] for i in range(len(array)): print(array[i]) #Output# #Var1 #Var2 #Var3