Upload files to "Modules/All_Pages"

This commit is contained in:
2024-11-24 10:58:44 -05:00
parent 4eb80e51c5
commit 4cd0ad5fd4
4 changed files with 144 additions and 0 deletions

View File

@ -0,0 +1,9 @@
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