On Tuesday, 27 November 2012 15:00:29 UTC+5:30, Avrajit Chatterjee wrote:
> I have multiple list and want to invoke a single prinout which will give a
> print preview of all list in Grid format in a different pages. I have tried
> wx.lib.printout.PrintTable but it takes only one table at a time.
Yong Wang wrote:
>Hi,
> I have a data set like row = [[1,2,3,4,5], [6,7,8,9,10], [11,12,13,14,15]]
> when I use loop to print out data, I got compile error in printout statment.
> while j<24:
> print ' ',string.ljust(str(units[0]), 5),
> print ' ',string.ljust(str(ports[j], 3),
>
Yong,
Are you sure you indent with the same characters and there is no
non-print code there?
--eric
On 1 feb 2006, at 17:36, Yong Wang wrote:
> Hi,
>I have a data set like row = [[1,2,3,4,5], [6,7,8,9,10],
> [11,12,13,14,15]]
>when I use loop to print out data, I got compile error in