📜  1 秒后删除 python 文本 - Python 代码示例

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

代码示例1
print("hello")
    print("this line will be deleted in 2 Seconds")
    time.sleep(2)
    delete_last_line()
    
    #if you want time you need to import time! (Search it up)