I want to clear the console after each print/input statement to clean the screen up. I don't want to just add 100 blank lines, but actually clear the console so it's blank before the next print statement.
import random
import time
input("Hello (click enter to continue after each line)")
# I want to clear the console here so it is blank before it prints again
print ("What is your name?")
# At this point, the line above is the only thing on the screen
lower_username = str(input("Enter Username: "))
upper_username = lower_username.capitalize()
input("Hello " + upper_username)
Thanks for the help!