texttale/game/clear.py

7 lines
109 B
Python
Raw Permalink Normal View History

2024-12-03 00:34:44 +00:00
import os
def clear():
if os.name == 'nt':
os.system('cls')
else:
os.system('clear')