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