Computer Science, asked by lighy5288, 9 months ago

Write method /function bigwords () to read contents from a text file code.text to count and display the occurrence of those words which have 5 more than alphabet in python 12th class

Answers

Answered by dharun56
1

Explanation:

Python String: Exercise-12 with Solution

Write a Python program to count the occurrences of each word in a given sentence.

Python String Exercises: Count the occurrences of each word in a given sentence

Sample Solution:-

Python Code:

def word_count(str):

counts = dict()

words = str.split()

for word in words:

if word in counts:

counts[word] += 1

else:

counts[word] = 1

return counts

print( word_count('the quick brown fox jumps over the lazy dog.'))

Copy

Sample Output:

{'the': 2, 'jumps': 1, 'brown': 1, 'lazy': 1, 'fox': 1, 'over': 1, 'quick': 1, 'dog.': 1}

Flowchart:

Flowchart: Count the occurrences of each word in a given sentence

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

mark as brainleast

Similar questions