name '_MedicalGraph__medical' is not defined
时间: 2023-09-20 13:08:10 浏览: 37
这个错误通常是因为你在调用一个名为`_MedicalGraph__medical`的变量或方法时,但是这个变量或方法并没有被定义。可能的原因包括:
1. 你可能拼写错误了变量或方法的名称。
2. 你可能没有正确地导入这个变量或方法所在的模块。
3. 如果这个变量或方法是类的私有变量或方法,那么你可能在类的外部尝试访问它,这是不允许的。
请检查你的代码,找出哪个变量或方法导致了这个错误,并确保它已经被正确地定义和导入。
相关问题
name '_name_' is not defined
As an AI language model, I'm unable to determine the context in which you're encountering this error message. However, the error message typically means that a variable or function named '_name_' has not been defined in the current scope or program. It could be a typo or a missing import statement. Please provide more information or code snippets for me to assist you better.
nameerror: name '__file__' is not defined
NameError: name '__file__' is not defined
这个错误通常是因为在当前作用域中没有定义__file__变量导致的。__file__变量是Python中的一个内置变量,用于表示当前脚本的文件名。如果你在交互式环境中运行代码,或者在一个没有文件名的字符串中执行代码,就会出现这个错误。
阅读全文