0
in a certain part of the code, I need to go through a list with string values. However, the display of these values needs to be 2 in 2, instead of 1 to 1. I am using Python version 3.
Example showing 1 to 1:
seguidores = ["teste", 'teste2', 'teste3', 'teste4', 'teste5']
for i in seguidores:
print(i)
In the precise case print(i) prints 2 result at a time from the follower list.
Show adapted to the rest of the code and is running here. Thank you very much
– Flávio