标签:ror sig lis 现象 font 方法 out indexer 报错
现象
m1=[]
for i in xrange(n):
m1[i]=1
报错:IndexError: list assignment index out of range
空数组不能直接指定位置
m1.append(1)
先生成一个定长的list:
m1=[0]*len(data)
m1[1]=1
list assignment index out of range
标签:ror sig lis 现象 font 方法 out indexer 报错
原文地址:https://www.cnblogs.com/4c4853/p/9785116.html