There are already many other questions about the print statement, but I did not find the answer to my problem:
When I do this:
for idx in range(10): print(idx, end="\r")
on the (ipython) terminal directly, it works great and always overwrites the previous line. However, when running in a module with PyCharm, I do not see any lines printed in stdout.
Is this a known PyCharm issue?
source share