Advertisement
Guest User

Redefined func

a guest
Apr 26th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. def foo(x, y):
  2.     return x + y
  3.  
  4. def bar(x, y):
  5.     def foo(x, y):
  6.         return x*y
  7.  
  8.     print foo(1, 2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement