为什么`curses.start_color()`在Python2下可以工作而在Python3下不能工作?

时间:2018-07-29 10:40:26

标签: python-3.x python-2.x ncurses

观察此脚本的行为:

import curses
scr = curses.initscr()
curses.start_color()
curses.init_pair(1, curses.COLOR_YELLOW, curses.COLOR_RED)
length, height = scr.getmaxyx()
win = curses.newwin(height, length, 0, 0)
win.addch(0, 0, "Q", curses.color_pair(1))
win.getch()
curses.endwin()

在Python2下: enter image description here

在Python 3下: enter image description here

这是怎么回事?

0 个答案:

没有答案