Skip to content

Instantly share code, notes, and snippets.

@jonasbjork
Created July 23, 2019 13:13
Show Gist options
  • Save jonasbjork/2c53cb4a4816c41609c82f92e7723cf3 to your computer and use it in GitHub Desktop.
Save jonasbjork/2c53cb4a4816c41609c82f92e7723cf3 to your computer and use it in GitHub Desktop.
Clear the screen (clear, cls command) with Python
def cls():
print("\033[H\033[J")
if __name__ == "__main__":
cls()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment