python 從字符串中提取數字並求和

從字符串中提取數字 如從"i13love14you520"中提取出來 13,14,520,而後相加求和 方法1:git s = "i13love14you520" new_str = "" #建立一個空字符串 for ch in s: if ch.isdigit(): #字符串中的方法,能夠直接判斷ch是不是數字 new_str += ch else: new_str += "
相關文章
相關標籤/搜索