Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hhhrrrttt222111
GitHub Repository: hhhrrrttt222111/Dorkify
Path: blob/master/core/mods.py
810 views
1
from os import system, name
2
3
def clear_screen():
4
if name == 'nt':
5
_ = system('cls')
6
else:
7
_ = system('clear')
8