So this is my problem:
first I iterate
for i in range(1,21):
print (i)
then I have a variable basename="Station"
I want a result where the output is Station_1.txt, Station_2.txt etc.
I managed to add the "_" to the variable basename like
mylist1 = ("_")
s = (basename)
for item in mylist1:
s += item
but now I have the problem on how to get the iteration on top of the variable basename, I could get is as it own like "Station_, 1, Station_, 2" but not inside the string itself.
Sorry, a total beginner here :)