Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions 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
expand button
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
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education