python 尋找字符串中的數字並求和(2019華爲筆試)

輸入一個字符串求出包含的全部的整數的和,若是整數前面有負號則是負數,兩個負號就是正數,依次類推。python 方法:code import re from functools import reduce print(reduce(lambda x,y:eval(x) + eval(y), re.findall('-*\d+', input())))
相關文章
相關標籤/搜索