At 02:58 PM 5/27/2005, Alan G wrote:
> 1. how can I format outfile so i can write multiple lines
> and then apend multiple lines later before closing the file?

I think you mean add a new column to the existing lines?

try something like

line = line + '%25s' % newdata

> 2. how can I make data formatting string '%25s' intiger (in this
case 25) a variable?


Just create the string outsoide the formatting line:

fmtString = '%%ds' % width

I think it should be '%%%ds' % width

s = fmtString % data

HTH,

Alan G
Author of the Learn to Program web tutor
http://www.freenetpages.co.uk/hp/alan.gauld

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Bob Gailer
mailto:[EMAIL PROTECTED]
510 558 3275 home
720 938 2625 cell

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to