Guest User

Untitled

a guest
Feb 25th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. def foo(a = 5, b = 8):
  2. return a + b
  3.  
  4. print(foo())
  5. print(foo(3))
  6. print(foo(3, 6))
Add Comment
Please, Sign In to add comment