Key Word(s): TOPIC_25, TOPIC_26, TOPIC_27



In [1]:
import numpy as np
In [2]:
a = [1,2,3,5]
summation = np.sum(a)
print(summation)
11