gpt4 book ai didi

python - 在Python中查找给定长度的所有单词

转载 作者:行者123 更新时间:2023-12-02 03:32:33 25 4
gpt4 key购买 nike

我想创建一个函数来查找具有给定长度的所有单词,但我无法使用 re.findall 来实现它,因为它只适用于整数。

这似乎不起作用:

f = open("wordlist.txt", "r")
line = f.readlines()
a = 14
k = re.findall(r'\b[a-zA-Z]{a}\b', ' '.join(line))
r = random.choice(k)

这都不是:

d = input()
k = re.findall(r'\b[a-zA-Z]{d}\b', ' '.join(line))
r = random.choice(k)

两者都给出:索引错误:无法从空序列中进行选择

我能做什么?

最佳答案

您不需要正则表达式:

sentence = "You don't need a regex to get words of length n"
length = 4
print([word for word in sentence.split() if len(word) == length])
# ['need']

关于python - 在Python中查找给定长度的所有单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51420726/

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