- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我需要调用我在另一个文件中的函数中创建的列表。我尝试在下面尝试此操作,但收到错误cannot import name 'names' from 'backend'
。有谁知道如何在不类的情况下实现这一目标?
import backend
from backend import names
word = names
print (word)
错误消息:
File "C:/Users/user/OneDrive/Desktop/Pokemon/weather.py", line 52, in <module>
from backend import names
builtins.ImportError: cannot import name 'names' from 'backend'
另一个文件的代码是
import const
SEP = ','
def get_pokemon_stats():
"""Reads the data contained in a pokemon data file and parses it into
several data structures.
Args:
None
Returns: a tuple of:
-a dict where:
-each key is a pokemon name (str)
-each value is a tuple of the following stats:
-pokemon name (str)
-species_id (int)
-height (float)
-weight (float)
-type_1 (str)
-type_2 (str)
-url_image (str)
-generation_id (int)
-evolves_from_species_id (str)
-a dict where:
-each key is a pokemon species_id (int)
-each value is the corresponding pokemon name (str)
-a list of all pokemon names (strs)
-a dict where:
-each key is a pokemon type (str). Note that type_1 and type_2
entries are all considered types. There should be no special
treatment for the type NA; it is considered a type as well.
-each value is a list of all pokemon names (strs) that fall into
the corresponding type
"""
name_to_stats = {}
id_to_name = {}
names = []
pokemon_by_type = {}
DATA_FILENAME = 'pokemon.csv'
with open(const.DATA_FILENAME) as f:
header_to_col_num = parse_header(f)
for line in f:
info = line.split(const.SEP)
name = (info[(header_to_col_num['pokemon'])])
col_names = ('pokemon', 'species_id', 'height', 'weight', 'type_1',
'type_2',
'url_image', 'generation_id', 'evolves_from_species_id',)
value = [info[header_to_col_num[col]] for col in col_names]
value[1] = int(value[1])
value[2] = float(value[2])
value[3] = float(value[3])
value[7] = int(value[7])
value = tuple(value)
name_to_stats[name] = value
species_id = int(info[(header_to_col_num['species_id'])])
id_to_name[species_id] = name
names.append(name)
for name, info in name_to_stats.items():
type1 = info[4]
type2 = info[5]
if type1 in pokemon_by_type:
pokemon_by_type[type1].append(name)
else:
pokemon_by_type[type1] = [name]
if type2 in pokemon_by_type:
pokemon_by_type[type2].append(name)
else:
pokemon_by_type[type2] = [name]
return name_to_stats, id_to_name, names, pokemon_by_type
最佳答案
In Python, variables that are only referenced inside a function are implicitly global. If a variable is assigned a value anywhere within the function’s body, it’s assumed to be a local unless explicitly declared as global.
因此,您无法从另一个文件导入 names
列表的原因是 names
位于您的 get_pokemon_stats
函数作用域内,并且它不是一个全局变量。
您可以将 names
设为全局,将其放在函数之外,并将其声明为全局以在函数内部使用:
...
names = []
def get_pokemon_stats():
...
global names
...
但是,如果你真的想这样做,你应该仔细考虑。仅当您调用 get_pokemon_stats
函数时,names
才会包含实际值。尽管如此,如果您不真正了解局部变量和全局变量如何工作以及何时应该使用它们,则应该避免仅在全局范围内声明变量。
我建议您考虑执行以下代码:
from backend import get_pokemon_stats
_, _, word, _ = get_pokemon_stats()
print (word)
关于python - 从另一个文件中的函数导入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53420278/
当我这样做时... import numpy as np ...我可以使用它但是... import pprint as pp ...不能,因为我需要这样做... from pprint import
我第一次尝试将 OpenCV 用于 Python 3。要安装,我只需在终端中输入“pip3 install opencv-python”。当我这样做时,我在 Finder(我在 Mac 上)中看到,在
如果有一个库我将使用至少两种方法,那么以下之间在性能或内存使用方面是否有任何差异? from X import method1, method2 和 import X 最佳答案 有区别,因为在 imp
我正在从 lodash 导入一些函数,我的同事告诉我,单独导入每个函数比将它们作为一个组导入更好。 当前方法: import {fn1, fn2, fn3} from 'lodash'; 首选方法:
之间有什么关系: import WSDL 中的元素 -和- import元素和在 XML Schema ...尤其是 location 之间的关系前者和 schemaLocation 的属性后者的属性
我在从 'theano.configdefaults' 导入 'local_bitwidth' 时遇到问题。并显示以下消息: ImportError
我注意到 React 可以这样导入: import * as React from 'react'; ...或者像这样: import React from 'react'; 第一个导入 react
对于当前的项目,我必须使用矩阵中提供的信息并对其进行数学计算,以及使用 ITK/VTK 函数来显示医疗信息/渲染。基本上我必须以(我猜)50/50 的方式同时使用 matlab 例程和 VTK/ITK
当我看到 pysqlite 的示例时,SQLite 库有两个用例。 from sqlite3 import dbapi2 as sqlite3 和 import sqlite3 为什么有两种方式支持s
我使用 Anaconda Python 发行版:Python 2.7 x64 和 Windows 7 SP1 x64 Ultimate。 当我import matplotlib.pyplot时,我得到
目录 【容器】镜像导出/导入 导出 导入 带标签 不带标签,后期修改 【仓库】镜像导出/导入
我正在寻找一种导入模块的方法,以便我可以从子文件夹 project/v0 和根文件夹 project 运行脚本。/p> 我在 python 3.6 中的文件结构(这就是没有初始化文件的原因) proj
我通常被告知以下是不好的做法。 from module import * 主要原因(或者有人告诉我)是,您可能会导入一些您不想要的东西,并且它可能会隐藏另一个模块中具有类似名称的函数或类。 但是,Py
我为 urllib (python3) 编写了一个小包装器。在if中导入模块是否正确且安全? if self.response_encoding == 'gzip': import gzip
我正在 pimcore 中创建一个新站点。有没有办法导出/导入 pimcore 站点的完整数据,以便我可以导出 xml/csv 格式的 pimcore 数据进行必要的更改,然后将其导入回来? 最佳答案
在 Node JS 中测试以下模块布局,看起来本地导出的定义总是在名称冲突的情况下替换外部导出的定义(参见 B.js 中的 f1)。 A.js export const f1 = 'A' B.js e
我在使用 VBA 代码时遇到了一些问题,该代码应该将 excel 数据导入我的 Access 数据库。当我运行代码时,我收到一个运行时错误“运行时错误 438 对象不支持此属性或方法”。来自我在其他论
我有一个名为 elements 的包,其中包含按钮、trifader、海报等内容。在 Button 类中,我正在执行 from elements import * 这执行正常,当我尝试 print(p
在我长期使用 python 的经验中,我遇到了一个非常奇怪的问题。 提前我想说我想知道为什么会发生这种情况 ,而不是如何更改我的代码或如何修复它,因为我也可以做到。 我正在使用 python2.7.3
我正在更新我的包。但是,我正在为依赖项/导入而苦苦挣扎。我使用了两个冲突的包 - ggplot2和 psych及其功能 alpha当然还有 alpha ggplot2 的对象不同于 alpha psy
我是一名优秀的程序员,十分优秀!