1. Create the functions sadness_score, and happiness_score 2. Each function has only 1 parameter of type string: text 3. In each function, create a dictionary for the words and their weights i.e in happiness_score function you should have happiness_dictionary = { "accomplish" : 3, ....} where the key is the word and the score is the value.
1. Create the functions sadness_score, and happiness_score 2. Each function has only 1 parameter of type string: text 3. In each function, create a dictionary for the words and their weights i.e in happiness_score function you should have happiness_dictionary = { "accomplish" : 3, ....} where the key is the word and the score is the value.
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
In python!
'''Remember to create dictionaries for the words and their weights
i.e.happiness_list ={"accomplish": 3, "friend": 3, ...}
'''
''' Define function sadness_score '''
''' Define function happiness_score '''
![Learning Objectives
1. Create a function in a modular structure
2. Use a dictionary to calculate score
3. Loop over the input string and the dictionary words
4. Print analysis of the given input
Instructions
This lab is the same as the Extract My Emotion :) :( - Lists-tuples lab but this time you will use dictionaries instead of lists
and tuples.
A very known application in natural language processing is to extract information from a given text. In this lab, you will be able to extract
some emotions (Sad and Happy) from a given string and calculate the score of each emotion. You will be given below the words that
express sadness, anger, and happiness. For each word, you will be given weight as well, so that when you are calculating for example the
score for sadness in the text (string), you can use this formula:
Sadness Score
Weight_1
+ Weight 3 +Weight_4 +......
%3D
Sadness Words
Word
Weight
Word
Weight
Word
Weight Word Weight
abandon
2
ashamed
4
awful
4
bad
hard
3
belittle
3
betray
5
crash
4
crazy
2
cry
3
disappoint
3
death
5
Happiness Words
Word
Weight
Word
Weight Word Weight
Word
Weight
accomplish
3
friend
3
beach
4
beautiful
5
dawn
4
adorable
3
enjoy
5
celebrate
4
cheer
3
bless
4
baby
3
angel
5
LO
LO](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Ffe70859f-d1ee-4d19-93f5-d3c21b44393e%2F91e4b71d-fc90-485c-bc54-de6d4d16c40b%2Fivi4nh_processed.png&w=3840&q=75)
Transcribed Image Text:Learning Objectives
1. Create a function in a modular structure
2. Use a dictionary to calculate score
3. Loop over the input string and the dictionary words
4. Print analysis of the given input
Instructions
This lab is the same as the Extract My Emotion :) :( - Lists-tuples lab but this time you will use dictionaries instead of lists
and tuples.
A very known application in natural language processing is to extract information from a given text. In this lab, you will be able to extract
some emotions (Sad and Happy) from a given string and calculate the score of each emotion. You will be given below the words that
express sadness, anger, and happiness. For each word, you will be given weight as well, so that when you are calculating for example the
score for sadness in the text (string), you can use this formula:
Sadness Score
Weight_1
+ Weight 3 +Weight_4 +......
%3D
Sadness Words
Word
Weight
Word
Weight
Word
Weight Word Weight
abandon
2
ashamed
4
awful
4
bad
hard
3
belittle
3
betray
5
crash
4
crazy
2
cry
3
disappoint
3
death
5
Happiness Words
Word
Weight
Word
Weight Word Weight
Word
Weight
accomplish
3
friend
3
beach
4
beautiful
5
dawn
4
adorable
3
enjoy
5
celebrate
4
cheer
3
bless
4
baby
3
angel
5
LO
LO
![1. Create the functions sadness_score, and happiness_score
2. Each function has only 1 parameter of type string: text
3. In each function, create a dictionary for the words and their weights i.e in happiness_score function you should have
{ "accomplish" : 3, ....} where the key is the word and the score is the value.
happiness_dictionary
4. Loop over the tuples and check if the word is in the given text. If the word is found, increment the resulting score by the current
score, otherwise do nothing
5. Return the final score
Example
Input: "This lab is driving me crazy. I want to accomplish more
so I won't feel bad at the end of the
day"
Return from sadness_score function: 7
Return from happiness_score function: 3
Hint!
• do not calculate the number of words in the text. The sentence "I am so bad" and "I am so bad bad bad" should return the
same score for this lab, though in the real world it is not always so.](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Ffe70859f-d1ee-4d19-93f5-d3c21b44393e%2F91e4b71d-fc90-485c-bc54-de6d4d16c40b%2F42o73e_processed.png&w=3840&q=75)
Transcribed Image Text:1. Create the functions sadness_score, and happiness_score
2. Each function has only 1 parameter of type string: text
3. In each function, create a dictionary for the words and their weights i.e in happiness_score function you should have
{ "accomplish" : 3, ....} where the key is the word and the score is the value.
happiness_dictionary
4. Loop over the tuples and check if the word is in the given text. If the word is found, increment the resulting score by the current
score, otherwise do nothing
5. Return the final score
Example
Input: "This lab is driving me crazy. I want to accomplish more
so I won't feel bad at the end of the
day"
Return from sadness_score function: 7
Return from happiness_score function: 3
Hint!
• do not calculate the number of words in the text. The sentence "I am so bad" and "I am so bad bad bad" should return the
same score for this lab, though in the real world it is not always so.
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education