Write a Python Program to Count the Number of Words in a Text File

preview_player
Показать описание
Hello Programmers, Welcome to my channel.

In this video you will learn about how to Write a Python Program to Count the Number of Words in a Text File

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

Code
=============================
filename = input("Enter Filename : ")

try:
fd = open(filename, "r")
index = 0
for word in words:
index += 1
print("Count of words present in file is : ", index)
except FileNotFoundError:
print("The file you entered does not exist")

Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
Рекомендации по теме