Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import module1
  2. x = 0
  3. module1.func(x)
  4.  
  5. import module2
  6. def func(x):
  7. module2.func(x)
  8.  
  9. import module3
  10. def func(x):
  11. module3.func(x)
  12.  
  13. def func(x):
  14. y = x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement