sia = SentimentIntensityAnalyzer()
def is_positive(comment: str) -> bool:
"""True if comment has positive compound sentiment, False otherwise."""
return sia.polarity_scores(comment)["compound"] > 0
for kv_comment in englishcomments[:10]:
value = kv_comment[2]
print(">", is_positive(value), value)
public sealed class Singleton2
{
// one time in static constructor
private static readonly Singleton2 instance = new(); // 2e.В конструкторе выполняется вот эта строка
// static constructor
static Singleton2() { } // 1е. Выполняется static конструктор, он выполняется только один раз
// get instance
public static Singleton2 Instance // 3е используется для получения интанции класса
{
get { return instance; }
}
}