Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Task 1 : Modify the textAnalysis.py program to fix the syllable count. fileName = input ( Enter the file name: ) inputFile =

Task 1: Modify the
textAnalysis.py program
to fix the syllable count. fileName = input("Enter the file name: ")
inputFile = open(fileName,' r')
text = inputFile.read()sentences = text.count('.')+ text.count('?')+1 text.count('!')words = len(text.split())syllables =0
vowels = "aeiouAEIOU"
for word in text.split(): syllables += word.count(vowel) if word.endswith(ending): if word.endswith('le'):Compute the Flesch Index and Grade Level
index =206.835-1.015*(words / sentences)-1level = int(round(0.39*(words / sentences)+11.8*\Output the results
print("The Flesch Index is", index)
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Temporal Databases Research And Practice Lncs 1399

Authors: Opher Etzion ,Sushil Jajodia ,Suryanarayana Sripada

1st Edition

3540645195, 978-3540645191

More Books

Students also viewed these Databases questions

Question

In a factor model, what is meant by isolated tracking error?

Answered: 1 week ago

Question

What lessons in intervention design, does this case represent?

Answered: 1 week ago