Write a program to capitalize first letter of every word in a file in Python
First, read each line from the file and then use the title() function to capitalize each word in the line. Example program to capitalize the… Read More »Write a program to capitalize first letter of every word in a file in Python