Python NameError when using an imported function

前端 未结 2 843
悲哀的现实
悲哀的现实 2021-01-29 05:35

When I import and use a function in a python(2.6.5) program, I get an error:

from Localization import MSGR

title = Localization.MSGR(\"Logfile from Ctf2Rrl.\")
         


        
相关标签:
2条回答
  • 2021-01-29 05:46

    If you import your method like this, you can user MSGR but not Localization.MSGR :)

    If you want to use Localization.MSGR, you can just import Localization

    0 讨论(0)
  • 2021-01-29 05:52

    The import statement of the form:

    from foo import bar
    

    Doesn't introduce the module name (foo) from which the imports (bar) are taken into the module namespace.

    Only the name bar is defined, not the module from which you imported `bar.

    0 讨论(0)
提交回复
热议问题