PHP前端开发

如何在 Python 中读取键盘按键?

百变鹏仔 5天前 #Python
文章标签 按键

如何在 python 中读取键盘按键

在编写 python 代码时,您可能需要从键盘读取按键。与 c 语言中常用的 kbhit() 和 getch() 函数类似,python 中提供了可以实现此功能的函数。

msvcrt 模块

在 windows 平台上,您可以使用 msvcrt 模块。此模块提供了以下函数:

立即学习“Python免费学习笔记(深入)”;

使用示例

以下是使用 msvcrt 模块读取键盘按键的示例代码:

import msvcrtwhile True:    if msvcrt.kbhit():  # Key pressed        key = ord(msvcrt.getch())  # Get first byte of keyscan code        if key == 0 or key == 224:  # Is it a function key            key += ord(msvcrt.getch()) * 256  # Get next byte of key scan code        print(f"Key pressed: {key}")

在这种代码中,我们使用 if 语句不断检查是否有按键被按下(kbhit() 返回 true),然后使用 getch() 获取按下的按键。对于功能键,我们需要获取两个字节的 keyscan 代码,因此我们在检查到第一个字节(ascii 0 或 224)后再次调用 getch()。

注意: