()
| 22 | |
| 23 | |
| 24 | def clear_screen(): # Function to clear the screen |
| 25 | if os.name == "posix": # Unix/Linux/MacOS/BSD/etc |
| 26 | os.system("clear") # Clear the Screen |
| 27 | elif os.name in ("nt", "dos", "ce"): # DOS/Windows |
| 28 | os.system("CLS") # Clear the Screen |
| 29 | |
| 30 | |
| 31 | def count_files( |