5 lines
84 B
Python
5 lines
84 B
Python
import os
|
|
|
|
clearScreen = lambda : os.system('cls' if os.name == 'nt' else 'clear')
|
|
|