📜  如何在 repl.it python 代码示例中清除控制台

📅  最后修改于: 2022-03-11 14:45:06.157000             🧑  作者: Mango

代码示例1
#this is the first method
import replit
replit.clear()

#this is the second method 
import os 
os.system('clear')