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

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

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

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

最佳答案 您可以使用printf样式格式:

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