Question: 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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!