Untitled

Anonymous
plain_text
08/09/2023 10:13 PM
332 B
17
Indexable
def reactions (reactions_column):
    total_reaction = 0
    for item in reactions_column:
        total_reaction += item ['count']
    return total_reaction
            


reactions_q['reactions_count'] = reactions_q['reactions'].apply(reactions)

Editor is loading...