keyboard shortcut clear the python shell in windows code example
Example: python cls command line
import os
if running_windows == True:
os.system('CLS')
elif running_linux == True:
os.system('clear')
import os
if running_windows == True:
os.system('CLS')
elif running_linux == True:
os.system('clear')