how to clear your screen in python code example
Example 1: python clear console
print('\033[H\033[J', end='')
Example 2: console clear python
import os
os.system('clear')
print('\033[H\033[J', end='')
import os
os.system('clear')