I was wondering if we can print like row-wise in python.
Basically I have a loop which might go on million times and I am printing out some strategic counts in that loop
The simplest way:
print(list(iter(x)))
Output:
[3, 4, ... and so on]