import os from sys import platform class Utils: @staticmethod def clear_shell(): if platform == "win32": os.system("cls") else: os.system("clear")