By "counter" I mean the "i" in the code I attached. I just picked up Python for University, and I was wondering if i could maniuplate the counter just like you can in C++
n=5
for i in range(n):
print("Test")
i=i-1
The result of this code is
Test Test Test Test Test
but i was wondering if you could manipulate the "i" so it is an infinite loop
Feel free to ask questions about what I mean if it is not clear enough