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