Importing modules in Python - best practice

后端 未结 6 542
时光取名叫无心
时光取名叫无心 2020-12-02 11:46

I am new to Python as I want to expand skills that I learned using R. In R I tend to load a bunch of libraries, sometimes resulting in function name conflicts.

What

6条回答
  •  -上瘾入骨i
    2020-12-02 12:37

    from A import B
    

    essentially equals following three statements

    import A
    B = A.B
    del A
    

    That's it, that is it all.

提交回复
热议问题