如何限制字符串中的字母数量

How do I limit the amount of letters in a string

我有一个程序要求用户输入一个问题,然后程序会回答它。 我想知道的是如何限制用户可以输入到变量中的字母数量。

您可以使用内置 len 函数检查它:

my_input = raw_input("Enter something ")
if len(my_input) > 3:
  print "More then 3"
else:
  print "Ok"

Python的input函数不能直接这样做;但您可以截断返回的字符串,或重复直到结果足够短。

# method 1
answer = input("What's up, doc? ")[:10]  # no more than 10 characters

# method 2
while True:
    answer = input("What's up, doc? ")
    if len(answer) <= 10:
        break
    else:
        print("Too much info - keep it shorter!")

如果这不是你要问的,你需要让你的问题更具体。

您只能获取输入文本的前 n 个字符,如下所示:

data = raw_input()[:10]

使用这个:

while True:
    answer = input("What's up, doc? ")
    if len(answer) >= 10:
        print("Too much info - keep it shorter!")