gpt4 book ai didi

python - 正则表达式 re.findall()

转载 作者:太空宇宙 更新时间:2023-11-03 13:12:45 25 4
gpt4 key购买 nike

我有一个函数,它接受一个计数和一个字符串作为输入。它应该返回该字符串中所有单词的列表,该字符串的长度计数和更大。然而,Python 无法识别我的变量并返回一个空列表。

def word_number(count, string):
return re.findall(r'\w{count,}', string)

如何传入变量 'count' 以便函数返回 count 和更长的单词?

最佳答案

您可以使用 printf 样式格式化:

re.findall(r'\w{%s,}' % count, string)

关于python - 正则表达式 re.findall(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39187726/

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