2022年 11月 4日

python中回车用什么表示_解释stdscr中的“ENTER”键(Python中的curses模块)

What is the reason for that?

您需要调用curses.noecho()作为初始化的一部分。Is there a way to move the curse to the next line?

stdscr.move(y,x)将移动到绝对位置。stdscr.getyx()将告诉您当前位置。If I want to do certain things (execute some function or something) on enter key press, then what will come in ‘if’condition? e.g.

你会认为你可以调用getch(),并将结果与KEY_ENTER进行比较。实际上,你需要检查更多的值。根据终端设置、使用的库和月相,可能需要检查换行符(也称为\n、^J、ASCII 10)或回车符(\r、^M、ASCII 13)。c = stdscr.getch()

if c == curses.KEY_ENTER or c == 10 or c == 13:

# I hit ENTER

示例程序:import curses

# Thanks, http://www.ipsum-generator.com

ipsum = ”’Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer

nec odio. Praesent libero. Sed cursus ante dapibus diam. Sed nisi. Nulla

quis sem at nibh elementum imperdiet. Duis sagittis ipsum. Praesent

mauris. Fusce nec tellus sed augue semper porta. Mauris massa. Vestibulum

lacinia arcu eget nulla. Class aptent taciti sociosqu ad litora torquent

per conubia nostra, per inceptos himenaeos.”’

try:

# Standard startup. Probably don’t need to change this

stdscr = curses.initscr()

curses.cbreak()

curses.noecho()

stdscr.keypad(1)

# Silly program to write to the screen,

# wait for either or .

# On , mess with the screen.

# On , exit.

stdscr.addstr(0, 0, ipsum)

stdscr.move(0, 0)

stdscr.refresh()

i = 0

j = 0

while 1:

c = stdscr.getch()

if c == ord(‘q’):

exit(0)

if c == curses.KEY_ENTER or c == 10 or c == 13:

i += 1

if i % 3 == 0:

stdscr.addstr(0, 0, ipsum.lower())

if i % 3 == 1:

stdscr.addstr(0, 0, ipsum.upper())

if i % 3 == 2:

stdscr.addstr(0, 0, ipsum)

stdscr.move(0, 0)

if c == curses.KEY_DOWN:

y, x = stdscr.getyx()

maxy, maxx = stdscr.getmaxyx()

stdscr.move((y+1) % maxy, x)

stdscr.refresh()

finally:

# Standard shutdown. Probably don’t need to change this.

curses.nocbreak()

stdscr.keypad(0)

curses.echo()

curses.endwin()

参考: