Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.43 KB | None | 0 0
  1. # файл my_tools c двумя функциями:
  2. def func1():
  3.     import 1
  4.     import 2
  5.     ...
  6.  
  7. def func2():
  8.     import 3
  9.     import 4
  10.     ...
  11.  
  12.  
  13. alita@magic:~$ python
  14. Python 3.6.9 (default, Nov  7 2019, 10:44:02)
  15. [GCC 8.3.0] on linux
  16. Type "help", "copyright", "credits" or "license" for more information.
  17. >>> from my_tools import func2
  18. # при импорте func2 не импортируются импорты 1 и 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement