6 lines
76 B
Python
6 lines
76 B
Python
import os
|
|
|
|
|
|
def cls():
|
|
os.system('cls' if os.name == 'nt' else 'clear')
|