Python data structures: Assignment 7.1

Coursera: Python data structures
Assignment 7.1
Week 3

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

Solution:

# Use words.txt as the file name
fname = input("Enter file name: ")
fh = open(fname,'r')
for i in fh.readlines():
 print(i.upper().rstrip())

Comments

  1. Would this work on a Mac? I am getting the following error message IOError: [Errno 2] No such file or directory: 'Word.txt' on line 3

    ReplyDelete

Post a Comment

Comments here for more information.........

Popular posts from this blog

Python data structure: Assignment 8.4

Programming for everybody (Python) Assignment 5.2

Coursera:Web application technologies and Django