xxxxxxxxxx
>>> import os
>>> clear = lambda: os.system('cls')
>>> clear()
xxxxxxxxxx
import os
def clear_screen():
os.system('cls' if os.name=='nt' else 'clear')
# Call the clear_screen function to clear the screen
clear_screen()
xxxxxxxxxx
# There are ANSI Escape Control Characters that can be used to clear the screen
# https://en.wikipedia.org/wiki/ANSI_escape_code#Control_characters
# ^H can be used to move the cursor left most (start line)
# and ^J can be used clear the part of the screen from the cursor to the end of the screen
# together
print("\033[H\033[J")
xxxxxxxxxx
os.system('cls' if os.name in ('nt', 'dos') else 'clear') #Works for both windows and linux