Zink
Member
- Joined
- Mar 8, 2012
- Messages
- 170
I am trying to write a small console app in Python using Curses, and I need to add some arrow key symbols.
I suppose this should be done this way:
win.addch(1, 1, curses.ACS_UARROW, curses.A_ALTCHARSET)
but it doesn't work. For ACS_UARROW I'm getting ^
and for ACS_DARROW I'm getting ┴
Are the arrows available somehow?
I suppose this should be done this way:
win.addch(1, 1, curses.ACS_UARROW, curses.A_ALTCHARSET)
but it doesn't work. For ACS_UARROW I'm getting ^
and for ACS_DARROW I'm getting ┴
Are the arrows available somehow?