how to clear python shell terminal ? code example
Example 1: how to clear the console python
def clear():
# for windows
if name == 'nt':
_ = system('cls')
# for mac and linux(here, os.name is 'posix')
else:
_ = system('clear')
Example 2: python cls command line
import os
if running_windows == True:
os.system('CLS')
elif running_linux == True:
os.system('clear')