Python Clear Stdout
import os
os.system('cls') # windows
os.system('clear') # linux
Arrogant Ape
import os
os.system('cls') # windows
os.system('clear') # linux