How to I make a 'for' loop in python run infinitely?
In Python, we know that 'while' loops can run infinitely,
but is there any way to make a 'for' loop run infinitely?
From my prior checking, I found a way to do so by importing the 'itertools' module, but is there a way to achieve the same without employing any external libraries / modules, and solely running on default Python?