So I have an odd bug which instead of making console clear writes that character.
That issue doesn't occur in C, and everything works normally when I write cls
in command prompt window. (I am not an advanced programmer, but I suppose that system()
is related with it.)
Edit: (When I use clear
, it does completely nothing.) Perhaps that problem is not related to wrong keyword (I use Windows), it just didn't do what I was expecting because of drawing that weird arrow character.
Edit2: I reinstalled whole vs with phyton, and it doesn't worked
Edit3: resolved : "Windows Command Prompt shortcut doesn't work correctly (Ctrl + L)
from os import system
while True :
print(" #")
system("cls")