Posts by Plinio • 3 points
1 post
-
0
votes2
answers49
viewsQ: How do you sum all the values of the vector in Python?
How can I sum all the values? Should I use an array (list) to store the values. valores = [] for i in range(1,11): valores.append(input('Informe o {}º valor: '.format(i)))…