# HG changeset patch # User Nishanth # Date 1286705419 -19800 # Node ID de96931fac21dbc069f28e9ff2661db4351ddb93 # Parent d83395820797d87f17398b1f74394ff507eb7dbe reviewed questions diff -r d83395820797 -r de96931fac21 getting-started-files/questions.rst --- a/getting-started-files/questions.rst Sun Oct 10 15:34:34 2010 +0530 +++ b/getting-started-files/questions.rst Sun Oct 10 15:40:19 2010 +0530 @@ -37,7 +37,7 @@ What is the value of content, at the end of this code block:: f = open('hello.txt') - content = f.read() + pre_content = f.read() content = f.read() f.close() @@ -126,7 +126,7 @@ .. A minimum of 2 questions here. -1. f.read(size) +1. What does ``f.read(size)`` do? #. Print every alternate line of a file, starting at the first line.