i was using the following code to clear my terminal:
import os
import sys
clear=lambda:os.system('cls')
clear()
but instead of clearing the terminal, it output a question mark. Why? and how do i actually clear the terminal. Using python 3.9
i was using the following code to clear my terminal:
import os
import sys
clear=lambda:os.system('cls')
clear()
but instead of clearing the terminal, it output a question mark. Why? and how do i actually clear the terminal. Using python 3.9