GUI:-please answer want to learn GUI programming in python , how should i proceed.

Gregory Ewing greg.ewing at canterbury.ac.nz
Mon Dec 16 17:37:37 EST 2013


Grant Edwards wrote:
> On 2013-12-16, Chris Angelico <rosuav at gmail.com> wrote:
> 
>> Are there
>> any aggregate types at all?
> 
> There are arrays with string keys (similar to Python dictionaries).

Well... sort of. They can only hold strings, not other arrays.
They're not first-class entities: you can't pass them around
or keep them in local variables; they're always global. (And
there are no modules, so global is *truly* global.)

In short, they're a very poor substitute for having real data
structures.

-- 
Greg



More information about the Python-list mailing list