Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # módulo A
  2.  
  3. # código global
  4. for i in range(10):
  5. print(i)
  6.  
  7. # função qualquer
  8. def some_function():
  9. print("some function")
  10.  
  11. # módulo B
  12.  
  13. import A # importando módulo A
  14.  
  15. A.some_function()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement