Skip to content

Instantly share code, notes, and snippets.

@spheppner
Created June 6, 2018 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spheppner/cbe15860fbfeb68fa741a2284d8a3ff9 to your computer and use it in GitHub Desktop.
Save spheppner/cbe15860fbfeb68fa741a2284d8a3ff9 to your computer and use it in GitHub Desktop.
Clear module (python3)
import os
def clear():
try:
os.system("cls")
except:
os.system("clear")
# You need this module in the same folder and you can simple import it with the "import" command
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment