python-Python报错list indices must be integers, not str

问题描述

Python报错list indices must be integers, not str


corterm是汉字字符串,没办法转化为整形,我想将一一对应的corterm与tf*idf组成一个字典或者列表型,怎么弄啊?纠结一上午了,大神们,帮帮忙啊

解决方案

那你的tfidf就应该是一个dict,然后你存好对应的数据,后面就可以根据汉字字符串作为key来查询

时间: 2024-12-21 14:52:08

python-Python报错list indices must be integers, not str的相关文章

typeerror-Python报错list indices must be integers, not str

问题描述 Python报错list indices must be integers, not str 分别是代码和报错,求大神们指点一二 解决方案 若是corterm是整数字符串,则把tfidf[corterm]改为tfidf[int(corterm)]即可. 解决方案二: corterm要为int类型,不能是字符串 解决方案三: 错误解释很清楚:你的列表的索引必须是int类型不能为str. 并且按照尝试,数组的下标一般都是整型的.

python matplotlib报错 mac系统,急!!!

问题描述 python matplotlib报错 mac系统,急!!! 100C 各位大神好,我在spyder中输入import matplotlib.pyplot as plt 结果就报错了:Traceback (most recent call last): File """" line 1 in File ""/Users/kevin/anaconda/lib/python2.7/site-packages/spyderlib/widget

c++调用python函数报错

问题描述 c++调用python函数报错 目标:用C++程序调用python模块里面的函数 python 模块: testm.py 函数:testm 具体实现如下: python 模块代码 def testm(a,b=2): c=a+b return c c++部分代码 #include"Python.h" #include #include using namespace std; void main() { bool c; int a = 0; Py_Initialize(); P

python 回归树问题,报错求解决

问题描述 python 回归树问题,报错求解决 错误提示: Traceback (most recent call last): File "", line 1, in runfile('F:/desktop/新建文件夹 (2)/书/machinelearninginaction/Ch09/regTrees.py', wdir='F:/desktop/新建文件夹 (2)/书/machinelearninginaction/Ch09') File "C:Usersshiying

遍历-python中的路径问题,总是报错

问题描述 python中的路径问题,总是报错 代码通过遍历文件夹后将路径存储到数组中,这是其中一条数据 'C:Echo-to-Johncut-in MF4wholedata.xlsx' ,为什么打开文件时出现 error22的错误 解决方案 Python zipfile报错问题 解决方案二: 文件路径中空格是否有影响.

python 报错求解Undefined variable from import: urlopen

问题描述 python 报错求解Undefined variable from import: urlopen 解决方案 http://www.cnblogs.com/i-bugs/p/4028647.html 解决方案二: 第三方包引入时,eclipse默认会把一些包定为错误的,错误是: "undefined variable from import..." 其实是对的,可是报错,很烦人 解决方法: window -- preferences -- pydev -- editor -

python在shell中运行正常,但在windows中经常报错

问题描述 python在shell中运行正常,但在windows中经常报错 我写了一个获取网页信息的文件,在shell中测试,运行情况良好,但是直接双击打开py文件,则经常闪退.以下是代码.这种情况我不是很了解,求帮助. # -*- coding: utf-8 -*-import urllib2import urllibimport reimport threadimport timeimport json#----------加载处理Steam市场--------------class Spi

pyffmpeg安装-python安装pyffmpeg,cython报错

问题描述 python安装pyffmpeg,cython报错 问题是这样的,最近在装python版的ffmpeg模块pyffmpeg,执行python setup.py install后,报错如下: from Cython.Distutils import build_ext ,ImportError: No module named Cython.Distutils ,发现可能缺少Cython模块的安装,于是又执行了下面的命令: pip install cython 结果报错: buildin

python新手求助-Python urllib.urlopen 报错。求解

问题描述 Python urllib.urlopen 报错.求解 import urllib然后urllib.urlopen()报错Undefined variable from import: urlopen新手求解. 解决方案 导入有问题,参考:http://www.cnblogs.com/i-bugs/p/4028647.html 解决方案二: Python_urllib.urlopen