diff --git a/Modules/All_Pages/clear_screen.py b/Modules/All_Pages/clear_screen.py deleted file mode 100644 index da32ce3..0000000 --- a/Modules/All_Pages/clear_screen.py +++ /dev/null @@ -1,9 +0,0 @@ -import os -import platform - -def clear_screen(): - # Check the system platform and use the appropriate command - if platform.system().lower() == "windows": - os.system('cls') # Windows command to clear the screen - else: - os.system('clear') # Unix-based (Linux/macOS) command to clear the screen \ No newline at end of file