Skip to content

Instantly share code, notes, and snippets.

@zcakzwa
Created July 5, 2016 03:44
Show Gist options
  • Save zcakzwa/1d4904c6f9683967fb61e3650a40e916 to your computer and use it in GitHub Desktop.
Save zcakzwa/1d4904c6f9683967fb61e3650a40e916 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.pythonlearn.com/code/words.txt
# Use words.txt as the file name
fname = raw_input("Enter file name: ")
fh = open(fname)
for line in fh:
line_upper=line.upper()
line_strip=line_upper.rstrip()
print line_strip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment