Is there a way to clear the \"Run\" console in PyCharm? I want a code that delete/hide all the print() made previously. Like the \"clear_all\" button, but without having to
You could just do a ("\n" * 100000000), so it'll be impossible to scroll back.