具体细节参考:https://www.cnblogs.com/shenjianping/p/11647473.html
提取字符串中的数字列表的操作
import re
strs="7班20岁3排5座"
regex=re.compile(r'\d+')
numbers=regex.findall(strs)
print(numbers)
具体细节参考:https://www.cnblogs.com/shenjianping/p/11647473.html
提取字符串中的数字列表的操作
import re
strs="7班20岁3排5座"
regex=re.compile(r'\d+')
numbers=regex.findall(strs)
print(numbers)