Я чувствую, что у меня тупой вопрос, но все равно все идет .. Я пытаюсь перейти от данных, которые выглядят примерно так:
a word form lemma POS count of occurrance
same word form lemma Not the same POS another count
same word form lemma Yet another POS another count
к результату, который выглядит следующим образом:
the word form total count all possible POS and their individual counts
Так, например, у меня может быть:
ring total count = 100 noun = 40, verb = 60
У меня есть данные в CSV-файле. Я хочу сделать что-то вроде этого:
for row in all_rows:
if row[0] is the same as row[0] in the next row, add the values from row[3] together to get the total count
buuut Я не могу понять, как это сделать. Помогите?