1
0
RRenanka
This code clears the console output.
0 Comments
from platform import system import os def limpar(): sys = system() if sys == 'Linux': os.system('clear') else: os.system('cls') limpar()