fairypp / Python_Learning

14 stars 8 forks source link

Python Data Structures_Coursera_Assignment 7.1 #1

Open fairypp opened 8 years ago

fairypp commented 8 years ago

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.pythonlearn.com/code/words.txt

#Use words.txt as the file name
fname = raw_input("Enter file name: ")
fhand = open(fname)
data=fhand.read()
data=data.rstrip()
data=data.upper()
print data