I have an excel spread sheet of data for which i am opening in python. The spreadsheet has a heading and all the data values in each column, e.g.
Time
00:07
00:15
...
I have opened the file and split it into columns (each with a heading and the data below):
for line in open ('name_of_file'):
column = line.split(',')
time = column[0].split(',')
print(time[0])
this prints out a list such as:
Time
00
01
02
I was wondering whether there is a way of removing the first entry in these printed columns?