Advertisement
here2share

# total_sum_from_a_list.py

Sep 2nd, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. # total_sum_from_a_list.py -- add of all numbers in list
  2.  
  3. mylist = map(int, '1 2 3 4 5 6 7 8 9 10 11 12'.split())
  4. print sum(mylist)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement