Advertisement
Guest User

Untitled

a guest
Jan 19th, 2012
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. # エキスパートpythonプログラミング 4.4.3 からの引用
  2.  
  3. def sum(*args):
  4. total = 0
  5. for arg in args:
  6. total += arg
  7. return total
  8.  
  9. # *args を避けた例
  10. def sum(sequence):
  11. total = 0
  12. for arg in sequence:
  13. total += arg
  14. return total
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement