Hello,
can anyone help me regarding how this can be done?
I need to declare an 'array' which has 95 indices, and each entry holds 8 bits each of data.
am doing this with:
PORT_MAP_LEN = 764/8
bit_map_len = [0]*PORT_MAP_LEN
but it is giving me list index out of range error, while accessing bit_map_len[] sometimes after 1 run, sometimes after 10, 150, 460, 760 runs and so on(i get this error randomly).
anyone pls help me out