What is the most pythonic way to import modules in python

前端 未结 4 2037
囚心锁ツ
囚心锁ツ 2020-12-03 15:26

Can anyone suggest me what is the most pythonic way to import modules in python? Let me explain - i have read a lot of python code and found several different ways of how t

4条回答
  •  南笙
    南笙 (楼主)
    2020-12-03 15:41

    It really doesn't matter, so long as you don't from ... import *. The rest is all taste and getting around cyclic import issues. PEP 8 states that you should import at the top of the script, but even that isn't set in stone.

提交回复
热议问题