Key Word(s): TOPIC_4, TOPIC_5, TOPIC_6
import numpy as np
a = [1,2,3,5] summation = np.sum(a) print(summation)
11