Answers for "clear console in replit"

0

how to clear console in repl.it python

#this is the first method
import replit
replit.clear()

#this is the second method 
import os 
os.system('clear')
Posted by: Guest on October-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language