Skip to main content
You can add the numbers in the array [6,7,29] using a loop or using built-in method.
An alternative (and better) method:
a = [6,7,29] print sum(a)
test text