Created
July 17, 2018 17:25
-
-
Save h3nryza/80fc0ff8a4c4dcfce42c1600d38ee46f to your computer and use it in GitHub Desktop.
Python clear screen
This file contains hidden or 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
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