How to prevent input to the curses console application? For example, what would they do if they were typed in the console? Like for example here, after clicking on the arrows on the keyboard, they were displayed in the console, how to disable it? enter image description here

  • The minimum reproducible example in the studio ... most likely the easiest solution would be to turn on the keypad (I won’t tell you how to do it in the bindings). - Fat-Zer

1 answer 1

he found the answer, the problem is solved in one line of code:

 curses.noecho() 

it turns off the display of typed characters in the console.