22 Jun
2022
22 Jun
'22
1:50 p.m.
Here are some pasted together snippets from the tutorial. i don't imagine copypasta to actually work. import curses def main(stdscr): stdscr.nodelay(True) stdscr.clear() while True: try: key = stdscr.getkey() except: key = 'press key?' stdscr.addstr(4, 3, key) stdscr.refresh() curses.wrapper(main)