Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def calc7(cullist):
  2. res = 0
  3.  
  4. if len(cullist) == 0:
  5. return -1
  6.  
  7. for num in cullist:
  8. res += num
  9.  
  10. return res
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement