This is the URL of the code. https://juejin.im/post/5aae6cb05188255574597ce4
import re#这个库是用来使用正则表达式的
a='sg+sga5g45gaae3f23hgt13'
r=re.findall('\d',a)#这个就是根据\d的正则表达式来查找对应字符,其中\d是对应0-9的数字
#查找非数字用\D
r1=re.findall('\D',a)
print (r)
['5', '4', '5', '3', '2', '3', '1', '3']
print (r1)
['s', 'g', '+', 's', 'g', 'a', 'g', 'g', 'a', 'a', 'e', 'f', 'h', 'g', 't']