Created
October 1, 2022 18:03
-
-
Save jkutner/7e7ed939365620e62ada7eaef967decd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def clear(): | |
if sys.platform.startswith("linux"): | |
os.system("clear") | |
elif sys.platform.startswith("win32"): | |
os.system("cls") | |
elif sys.platform.startswith("darwin"): | |
os.system("clear") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment