I have the following code:
for i in range(w[n], W):
array[n][i] = v[n]
In python this give an out of index error because I am not using append...how would I right the above in order to work in python???
All help will be appreciated! Thank You!
v[n],w[n]? This much information is not enough. – Rohit Jain Oct 31 '12 at 5:22