Program to Print the Number of Lines,Words and Characters Present in the Given File?

0

Program to Print the Number of Lines,Words and Characters Present in the Given File?

Source Code:

import os,sys
fname=input("Enter File Name: ")
if os.path.isfile(fname):
    print("File exists:",fname)
    f=open(fname,"r")
else:
    print("File does not exist:",fname)
    sys.exit(0)
lcount=wcount=ccount=0
for line in f:
    lcount=lcount+1
    ccount=ccount+len(line)
    words=line.split()
    wcount=wcount+len(words)
print("The number of Lines:",lcount)
print("The number of Words:",wcount)
print("The number of Characters:",ccount)
 

Output:

File Name:

  • Topic.txt



Post a Comment

0Comments
Post a Comment (0)