Posts by Pedro Ledger • 29 points
1 post
-
2
votes4
answers1133
viewsQ: Add negative elements from a list
I want to add up only the negative elements of a Python list. The code I initially thought was: lista = [12, -2, 4, 8, 29, 45, 78, 36, -17, 2, 12, 8, 3, 3, -52] for n in lista: if n < 0:…