gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 19:55:22 25 4
gpt4 key购买 nike

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

最佳答案

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!")

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

关于python - 如何限制字符串中的字母数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28465779/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com