Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. # A.py
  2. import B
  3.  
  4. def foo():
  5. print(B.bar())
  6.  
  7. # B.py
  8.  
  9. import A
  10.  
  11. def bar():
  12. print(A.foo())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement