Hello, why the following code doesn't print the content of the file: #!/usr/bin/python
from_file ="file.txt" in_file = open(from_file) str = in_file.read() print "Here should be the output from the file - ", in_file.read() print "Here should be the output from the STR- ", str in_file.close() The first "print" has nothing whereas the second properly displays the content of the file. Thank you AZ
-- http://mail.python.org/mailman/listinfo/python-list