I was trying to over write a line I want to overwrite the pervious lines so it will appear like a different menu, but it doesn't seem to work with input function, how do I overwrite this?
def menu():
sys.stdout.write("Menu 1")
x = input("Enter: ")
sys.stdout.write('\r other different data')
sys.stdout.flush()
menu()