Let's say I have a tuple that is (4, 5, 6, 7, 8). I want to iterate through it, then each iteration only print the numbers after that index. So like this:
for i in tuple:
#print values to the right of i
Example output: 5, 6, 7, 8, 6, 7, 8, 7, 8, 8. Any help? I know how to access a tuple value by its index but not by the reverse.