Skip to content

Instantly share code, notes, and snippets.

@h3nryza
Created July 17, 2018 17:25
Show Gist options
  • Save h3nryza/80fc0ff8a4c4dcfce42c1600d38ee46f to your computer and use it in GitHub Desktop.
Save h3nryza/80fc0ff8a4c4dcfce42c1600d38ee46f to your computer and use it in GitHub Desktop.
Python clear screen
import os
os.system('cls') # on windows
os.system('clear') # on linux / os x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment