import re#导入re
rettern=re.findall(r"\d+",“python=129999,python7890,python1986”)#findall查找所有的数字,他提取出来的是一个列表
max=0 #初始化max
for item in rettern:
`
item`=int(item)
if max
原创,CSDN首发,转载请保留出处!!!
欢迎分享,转载请注明来源:内存溢出
import re#导入re
rettern=re.findall(r"\d+",“python=129999,python7890,python1986”)#findall查找所有的数字,他提取出来的是一个列表
max=0 #初始化max
for item in rettern:
`
item`=int(item)
if max
原创,CSDN首发,转载请保留出处!!!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)