I want to split the data instance from the line as shown in image below.
start_end_time, wav_file_name, emotion, val_act_dom = line.strip().split('\t')
I need to store first column time ranges in start_end_time, txt file name in wav_file_name, third column of data in emotion and fourth column list in val_act_dom. This code is throwing me error saying "expected 4 but got 1". Is there any other easier way to achieve that? Also, I have already used loop for all lines and I couldn't do it for even single line.
Sorry but my line looks like this as shown in new image: enter image description here