#Python syntax for loop add=0 for i in range(0,10): add=add+i add=0 list_1=[1,2,3,4,5,6,7] for i in list_1: add=add+i