Re: XMLLIB

2006-06-30 Thread Stephan Wassipaul
Gnosis (http://gnosis.cx/download/) is able to do this if you mean something like pickling, but with an XML-like ouput. -- http://mail.python.org/mailman/listinfo/python-list

Re: print shell output in a file

2006-06-30 Thread Stephan Wassipaul
f = file('output.txt','w') print >>f, '%-30s | %-12d | %-12d |%-12d ' % (typename, size / count, count, size) f.close() > hello, > > one more question i will