I have a question. How can I make python script like:
i1 -> hello
i2 -> hi
i3 -> hurra
for (i = 1; i <= 3; i++)
print(text)
My desired output:
hello
hi
hurra
So I would like to iterate "links" in function but I want actual "linked values/strings" to iterate in "output". Maybe arrays can be used? Hope I'm clear.
Thanks!