![](https://secure.gravatar.com/avatar/86577f45d5fb4051824c3df598d4157d.jpg?s=120&d=mm&r=g)
22 Jun
2022
22 Jun
'22
1:54 p.m.
here's what i have now: import curses def main(stdscr): stdscr.nodelay(True) stdscr.clear() key = 'press key?' while key != 'q': try: key = stdscr.getkey() except: pass stdscr.erase() stdscr.addstr(4, 3, key) stdscr.refresh() curses.wrapper(main)