+ 1
How do I print the sum of an append list in python.
This code is correct, but I would like to make it print the sum of the append list. list = [7,1,2,3,4,5,6,7] even_list = [] for i in list: if i % 2 == 0: even_list.append(i) print(even_list)
1 Réponse
+ 1
The output would be as follows;
2
4
6
Instead of 12😆