Та же функция , другие результаты, если я помещу ее в цикл while/for
#python #for-loop #while-loop Вопрос: Давайте взглянем на следующий код : sentimentos = pd.read_json('/content/sample_data/words_sentiment.json') sentiment_dict = sentimentos.to_dict('dict') def get_sentiment(token): output = {} for word in token: if(word in sentiment_dict): if(output ==…