to clear screen in python code example
Example 1: clear screen python
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
Example 2: python clear console
print('\033[H\033[J', end='')
Import os
os.system("clear") # Linux - OSX
os.system("cls") # Windows
print('\033[H\033[J', end='')