kilolilo

Untitled

Oct 11th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. a=[1,2,3,4,5,6,7,8,9,10]
  2. b=len(a)
  3. summa=0
  4. for i in range (0,b,1):
  5.     summa+=a[i]
  6. print summa
Add Comment
Please, Sign In to add comment