Created
February 11, 2022 17:24
-
-
Save VinayReddy-Vangala/acd1a8d4747349e9d6cdc4e2e7471fff to your computer and use it in GitHub Desktop.
7.1 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 upper case. Use the file words.txt to produce the output below.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use words.txt as the file name | |
fname = input("Enter file name: ") | |
fh = open(fname) | |
for line in fh: | |
stripped_line=line.strip() | |
print(stripped_line.upper()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment