12 lines
208 B
Python
12 lines
208 B
Python
import os
|
|
from sys import platform
|
|
|
|
|
|
class Utils:
|
|
@staticmethod
|
|
def clear_shell():
|
|
if platform == "win32":
|
|
os.system("cls")
|
|
else:
|
|
os.system("clear")
|