- 1
Python HELP!
“Use google translation” Циклы for позволяют легко обходить списки. Вам дан список чисел, рассчитайте их сумму с помощью цикла for.
2 Answers
+ 6
Карпычев Дмитрий
Make a variable like total and use for loop to iterate list x and add each value of list in total like:
total = 0
for i in x:
total += i
print (total)
+ 5
x = [42, 8, 7, 1, 0, 124, 8897, 555, 3, 67, 99]