Max> Hey gang, I'm new to python coding. I'm trying to find the
Max> simplest way to open a text file (on the same server) and display
Max> it's content.
Try the open() builtin function:
f = open(plainfiles.href, "r")
print f.read()
Skip
--
http://mail.python.org/mailman/listinfo/python-list
