我试图获得用户输入而不必回击,我看向curses库。但每次我尝试运行该程序时:
import curses
stdscr = curses.initscr()
c = stdscr.getch()
print ('you entered', chr(c))
curses.endwin()
我得到的只是回报:
error Traceback (most recent call last)
<ipython-input-2-2bb957279c64> in <module>()
3 c = stdscr.getch()
4 print ('you entered', chr(c))
----> 5 curses.endwin()
error: endwin() returned ERR
我知道为什么会这样做吗?