Re: is there a project running (GUI Builder for Python ) ?

2009-02-12 Thread gc_ottawa
..I come from Delphi, and compared to Delphi, even Visual Studio > vanishes ;-) ...I don't even notice the difference between Delphi (which I'm still using) > and wxPython. > > I think this story happened to other people to, > so instead of putting a lot of effort in designing and maint

Re: How to make arrays from Lists

2008-11-11 Thread gc_ottawa
On Nov 11, 7:48 pm, [EMAIL PROTECTED] wrote: > gc_ott: > > > How do I change the value of any element to produce (say) > > [[99,0,0],[0,0,0],[0,0,0]] ? > > > gordc > > To create a 2D list, that is a list of lists: > x = [[0] * ncols for i in nrows] > (Don't do what you were doing, because you end w

How to make arrays from Lists

2008-11-11 Thread gc_ottawa
I want to construct a 2-dimensional array from a List but I cannot find a simple way of changing any element. For example, construct a 3x3 array like this:- >>> x=[0,0,0] x=[x]*3 this produces [[0,0,0],[0,0,0],[0,0,0]. So far so good. How do I change the value of any element to produce (say)