Use 'import module' or 'from module import'?

前端 未结 19 2190
一向
一向 2020-11-21 07:47

I\'ve tried to find a comprehensive guide on whether it is best to use import module or from module import. I\'ve just started with Python and I\'m

19条回答
  •  忘掉有多难
    2020-11-21 08:08

    import module
    

    Is best when you will use many functions from the module.

    from module import function
    

    Is best when you want to avoid polluting the global namespace with all the functions and types from a module when you only need function.

提交回复
热议问题