Ligne de commande Python CLS
import os
if running_windows == True:
os.system('CLS')
elif running_linux == True:
os.system('clear')
Flyhouse_Squarewheel
import os
if running_windows == True:
os.system('CLS')
elif running_linux == True:
os.system('clear')