如何在python中一次输入一个字母?

时间:2018-06-23 20:31:34

标签: python python-3.x input

我想用python一次取一个字母。我们可以使用python3中的“ input()”一次取一个字母吗?

示例:我只想输入一个字母,例如a。 b,c,..... etc。它不能接受多个字母词,例如ab,as,asa ...等。 python 3中有这样的功能吗?

2 个答案:

答案 0 :(得分:0)

您可以使用以下代码:

a=input()[0]
print(a)

a将是第一个字符,但是如果要强制用户输入一个字母,则可以使用提取

答案 1 :(得分:0)

使用getch模块。

import getch
# ...
char = getch.getch() # User input, but not displayed on the screen
# or
char = getch.getche() # also displayed on the screen