Answers for "Delete python text after 1 sec"

0

Delete python text after 1 sec

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)
Posted by: Guest on January-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language