There are already lots of other questions about the print statement, but I have not found an answer to my problem:
When I do:
for idx in range(10):
print(idx, end="\r")
in the (ipython) terminal directly, it works fine and always overwrites the previous line. However, when running this in a module with PyCharm, I don't see any lines printed in the stdout.
Is this a known PyCharm issue?