Actually i am reading an Excel sheet using python i know how to slice the rows based on no’s,but what i want is to slice row values based on row values…
For example:
col1 col2 col3
---------------
row1 | sss 2 3
row2 | ppp 4 5
row3 | vvv 6 7
I need to slice row but using row values like slice(col0,sss,vvv) like this i want.so that if any row order changes also i can access that row values based on name.
I dont need like this slice(0,4,6)…pls help me thanks in advance
Based on that fragment and the diagram, you possibly want something like this (untested):