I am making a clear input and I'm stuck in the clearing part. Code:
import os
clear = input("Clear run console? [Y/N]: ")
if clear == "Y":
os.system('cls' if os.name == 'nt' else 'clear')
elif clear == "N":
print("Okay, then.")
It doesn't do anything and gives no error message.