I want to use SentiWordNet for my project and I could not figure out what does the sense number do? Here is a part of SentiWordNet's word list;
POS ID PosScore NegScore SynsetTerms Gloss
a 00002730 0 0 acroscopic#1 facing or on the side toward the apex
a 00002843 0 0 basiscopic#1 facing or on the side toward the base
a 00003829 0.25 0 parturient#2 giving birth; "a parturient heifer"
Here is the explanation of SentiWordNet from its word list document;
The pair (POS,ID) uniquely identifies a WordNet (3.0) synset. The values PosScore and NegScore are the positivity and negativity score assigned by SentiWordNet to the synset. The objectivity score can be calculated as: ObjScore = 1 - (PosScore + NegScore) SynsetTerms column reports the terms, with sense number, belonging to the synset (separated by spaces).
I also found a related question here but I did not understand the feature of the sense number from the answer. Here is the related question's link: What does sentiwordnet 3.0 result signify?
My question is: How can I use this sense number part in my code? What does it do exactly?