Puh, what a discussion... most common use case I can think of is
>> d = {'a': 1, 'b': 2, 'c': 3}
>> for key in d:
>> # do something that relies on order of keys as specified in the
>> constructor
It's a bit tireing having to type
>> for key in sorted(d.keys()):
>> do_somethig_with(d[ke
Who else is using python (programmers, scientists, finance)?
Me! Graduated in fine arts. Python is what I do when I am fed up with
all those colors. Much easier to manufacture sense with.
--
http://mail.python.org/mailman/listinfo/python-list
On 15 Mai, 15:06, Tom Gur <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I was wondering how do I get control over a window (Win32).
> to be more specific, I need to find a handle to a window of a certain
> program and minimize the window.
There are many ways to get the handle of a window.
Assuming you ha