#Write a program that prompts for a file name,
# then opens that file and reads through the file,
# and print the contents of the file in the upper case.
# Use the file words.txt to produce the output below.
fname=input("Enter the file name: ")
fh=open(fname)
for line in fname:
line=line.strip
inp= fh.read()
print(inp.upper() )
Post a Comment