Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | None | 0 0
  1. def cal(a, b=[]):
  2.     b.append(a)
  3.  
  4.  
  5. print(cal(0))
  6. print(cal(7))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement