Untitled

 avatar
unknown
python
3 years ago
91 B
3
Indexable
def get_sum(nums):
    sum = 0
    for num in nums:
        sum += num
    
    return sum
Editor is loading...