str1 = 'imooc videonum = 1000'
info = re.search(r'\d+','str1')
In [137]: info.group()
Out[137]: '1'
为什么我的不行呢?
因为re.search函数里‘str1’表示的是字符串str1,而不是你上面定义的字符串变量str1,改为re.search(r'\d+',str1)就可以了。