dg-clt/dg_clt/screen.py

6 lines
78 B
Python

import os
def clear():
os.system('cls' if os.name == 'nt' else 'clear')