我需要创建一个函数来查找包含一些包含数字的大写首字母缩写词,但我只能检测到仅包含字母的首字母缩写词。
一个例子:
s= "the EU needs to contribute part of their GDP to improve the IC3 plan"
我试过
def acronym(s):
return re.findall(r"\b[A-Z]{2,}\b", s)
print(acronym(s))
但我只得到
[EU,GDP]
我可以添加或更改什么来获得
[EU,GDP,IC3]
谢谢