Skip to content

Instantly share code, notes, and snippets.

@MichelleDalalJian
Created October 7, 2017 12:51
Show Gist options
  • Save MichelleDalalJian/a639453871555f8c48626cbc1b56a6d2 to your computer and use it in GitHub Desktop.
Save MichelleDalalJian/a639453871555f8c48626cbc1b56a6d2 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. You can download the sample data at http://www.py4e.com/code3/words.txt
# Use words.txt as the file name
input("Enter File Name")
fhand = open ("words.txt")
for line in fhand:
line = line.rstrip()
line = line.upper()
print(line)
@sahabell
Copy link

sahabell commented Jul 29, 2020

fname = input("Enter file name: ")
try:
 fh = open(fname,'r')
except:
 print('Invalid file name')
 quit()
for line in fh:
    fh = line.upper()
    print(fh.rstrip())
``

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment