Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a python function buildIndex(Text) that accepts Text string and returns a dictionary where each item is a key-value pair; the key is the keyword,
Write a python function buildIndex(Text) that accepts Text string and returns a dictionary where each item is a key-value pair; the key is the keyword, and the value how often this keyword appears in the Text. Example: Text = "KAU is a University in Jeddah, Jeddah is a big city" after passing the Text to the function buildIndex(Text), it should return mydict ={ "KAU": 1, "is": 2, "University": 1, "a": 2, "Jeddah": 2, "big": 1, "city": 1\}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started