Need to convert uniuqe.py to include a main and three functions, buildUnique(), sortUnique() and printUnique() """
File: unique.py
Project 5.7
Prints the unique words in a text file in alphabetical order.
"""
# Take the input file name
inName = input("Enter the input file name: ")
# Open the input file and initialize list of unique words
inputFile = open(inName, 'r')
uniqueWords = []
# Add the unique words in the file to the list
for line in inputFile:
words = line.split()
for word in words:
if not word in uniqueWords:
uniqueWords.append(word)
uniqueWords.sort()
# Prints the unique words
for word in uniqueWords:
print(word)
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments
Leave a comment