Chuck Allison wrote:
> Hello tutor,
>
> I notice that with 'print >> f' one can print the string
> representation of objects to a file. Is there a corresponding input
> facility that parses through a file creating objects? I can't find
> one. In the meantime, I did this:
>
>
f = open
Hello tutor,
I notice that with 'print >> f' one can print the string
representation of objects to a file. Is there a corresponding input
facility that parses through a file creating objects? I can't find
one. In the meantime, I did this:
>>> f = open('out.dat','w')
>>> print >> f, 1, 2
>