Answers for "Sum items in a list with ints and strings in python"

0

Sum items in a list with ints and strings in python

def sum_mix(arr):
    sumIntStr = sum(map(int, arr))
    return sumIntStr
sum_mix(['5', '0', 9, 3, 2, 1, '9', 6, 7])
Posted by: Guest on February-03-2021

Code answers related to "Sum items in a list with ints and strings in python"

Python Answers by Framework

Browse Popular Code Answers by Language