5 lines
53 B
Python
5 lines
53 B
Python
|
import os
|
||
|
|
||
|
def clearScreen():
|
||
|
os.system('clear')
|