现象
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
posted on 2018-10-14 09:00 4c4853 阅读(343) 评论(0) 编辑 收藏 举报