I am working with file tabel.txt and I'm having trouble with this. I want to display data from forth column but I am getting
error: list index out of range
Can anyone help me with this
f = open("tabel.txt", 'r')
for line in f:
a=line.split("\t")
print(a[3])