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

前端 未结 19 2186
一向
一向 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 - You don't need additional efforts to fetch another thing from module. It has disadvantages such as redundant typing

    Module Import From - Less typing &More control over which items of a module can be accessed.To use a new item from the module you have to update your import statement.

提交回复
热议问题