Returning normalised data from a csv file in Python
Given a csv file with the contents 1,10,20,30,40,50,60,70,80,90,1002,210,220,230,240,250,260,270,280,290,3003,310,330,340,350,360,370,380,390,400,410 I want to read all data except the first value of each row (effectively ignore the first column). Before output, I want…