How to clear a system console ?

I want to clear system console.
How to clear ?

[System console]


I don’t think you can other than.


for i in range(100):
    print("
")

You can:

import os
os.system("cls")

Works on Windows, not sure about other OS

Thank you.
This problem was resolved with your reply.

the blender-python-console has a button: console and after a click one of the choices is Clear (type e.g. C)