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)