Skip to content

Instantly share code, notes, and snippets.

@SysadminJeroen
Created February 26, 2017 00:48
Show Gist options
  • Save SysadminJeroen/c757c63cfe421487dc166535a56a4ae1 to your computer and use it in GitHub Desktop.
Save SysadminJeroen/c757c63cfe421487dc166535a56a4ae1 to your computer and use it in GitHub Desktop.
Clear the console.
def clear(i = 64):
if(i <= 1):
print "\n";
if(i > 9999):
i = 9999;
for x in range(1, i):
print "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment