Using the function row[3::2] will return the row from every 2nd column starting from the 3rd column.
But how can you adjust it so it returns up to a certain column? That is, how can you adjust it so it only gets every 2nd column up to the nth column.
3tontaking every other item would berow[3:n:2]. To takenitems starting at3and taking every other would be something more likerow[3::2][:n]. In that case it would probably make more sense to use something likeitertools.islice