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