ANALYSE-8/services/utils.py

7 lines
123 B
Python

import os
class Utils:
@staticmethod
def clear_screen():
os.system('cls' if os.name == 'nt' else 'clear')