clear screen in python inteactrice shell code example
Example: python interpreter clear screen
import os
# Windows
os.system('cls')
# Linux
os.system('clear')
import os
# Windows
os.system('cls')
# Linux
os.system('clear')