screenchot of input and output  import string def count_words(fname): '''Returns the number of words in a text file''' pass #Open the file for reading #Read the text into one long string #Close the file #Remove the punctuation using string.punctuation #Split the text into a list of words #Return the number of words def main(): '''Controls the program''' filename = "gb.txt" num_words = count_words(filename) print("There are", num_words, "words in", filename) main() #Start execution

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter7: File Handling And Applications
Section: Chapter Questions
Problem 15RQ
icon
Related questions
Question

screenchot of input and output 

import string

def count_words(fname):
'''Returns the number of words in a text file'''
pass
#Open the file for reading
#Read the text into one long string
#Close the file
#Remove the punctuation using string.punctuation
#Split the text into a list of words
#Return the number of words

def main():
'''Controls the program'''
filename = "gb.txt"
num_words = count_words(filename)
print("There are", num_words, "words in", filename)

main() #Start execution

1. Complete the function count_words to return the number of words in a text file. The function
is passed a filename but it should work for any file. Do not change the main function. For full
credit, remove the punctuation in the text before splitting it into words. Hint: assume words
are separated by whitespace. Use the string split method to get a list of words. Then the
length of the list is the number of words in the file.
Save & Run
Download
Load History
Show CodeLens
1 import string
2
3 def count_words (fname) :
4
'''Returns the number of words in a text file'''
pass
6
#Open the file for reading
7
#Read the text into one long string
8
#Close the file
9.
#Remove the punctuation using string.punctuation
#Split the text into a list of words
#Return the number of words
10
11
12
13 def main () :
14
'''Controls the program'''
15
filename = "gb.txt"
16
num words = count words (filename)
17
print ("There are", num words, "words in", filename)
18
19 main ()
#Start execution
20
Transcribed Image Text:1. Complete the function count_words to return the number of words in a text file. The function is passed a filename but it should work for any file. Do not change the main function. For full credit, remove the punctuation in the text before splitting it into words. Hint: assume words are separated by whitespace. Use the string split method to get a list of words. Then the length of the list is the number of words in the file. Save & Run Download Load History Show CodeLens 1 import string 2 3 def count_words (fname) : 4 '''Returns the number of words in a text file''' pass 6 #Open the file for reading 7 #Read the text into one long string 8 #Close the file 9. #Remove the punctuation using string.punctuation #Split the text into a list of words #Return the number of words 10 11 12 13 def main () : 14 '''Controls the program''' 15 filename = "gb.txt" 16 num words = count words (filename) 17 print ("There are", num words, "words in", filename) 18 19 main () #Start execution 20
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Graphical User Interface
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr