我们需要在给定的字符串中找到正则表达式模式 10+1。为此,我们可以使用 Python 中可用的 re 模块。此包有一个名为 findall 的方法,它接受正则表达式和我们要在其内搜索的字符串。它会给我们该字符串中模式的所有出现情况。例如,对于输入字符串 -10000001 hello world 10011 test100000001test。我们应该得到输出 -10000001 1001 100000001我们可以使用 re 包如下实现 -import re occ = re.findall("10+1", "10000001 hello world 10011 test100000001test.") for i in occ: print(i)这将给出输出 -10000001 1001 100000001