8 lines
84 B
Python
8 lines
84 B
Python
import os
|
|
|
|
|
|
def clear():
|
|
os.subprocess('cls' if os.name == 'nt' else 'clear')
|
|
|
|
|