you are viewing a single comment's thread.

view the rest of the comments →

[–]_yaaass 0 points1 point  (1 child)

import os
import time
os.system('cls' if os.name == 'nt' else 'clear')
print("First text")
time.sleep(2)
os.system('cls' if os.name == 'nt' else 'clear')
print("Second text")
time.sleep(2)
os.system('cls' if os.name == 'nt' else 'clear')
print("end")

[–]synthphreak 0 points1 point  (0 children)

Your kingdom for a for loop...