Program to generate text files with all alphabets names

In this python file program, we will generate text files with all alphabets names. In this program, there is no file to take as input because we will generate the files having all alphabets names.

Steps to solve the program
				
					# Import os,string library
import string, os
# Check if the files with the alphabet names exists or not
if not os.path.exists("letters"):
# If not then make a new file
   os.makedirs("letters")
# Iterate over letters in the alphabets
for letter in string.ascii_uppercase:
# Open the files with write mode
   with open(letter + ".txt", "w") as f:
   # Add corresponding letter to the file
       f.writelines(letter)
				
			

Output :

A.txt
B.txt
C.txt
D.txt
.
.
.
.
.
.
X.txt
Y.txt
Z.txt

 

 

get all odd and even length words in two lists.

Leave a Comment