我想在列表中搜索模式并打印它。 我使用正则表达式来搜索模式但不能正常工作 有人可以帮助我
import re
p = re.compile('{*}')
str = 'My {noun2} gave me {number1} dollar bill'
list = str.split(' ')
for i in range(len(list)):
if p.findall(list[i]):
print(list[i])
我希望输出如下: {}名2 {NUMBER1}