Python is excellent for gui development
Speed of execution is less important than speed of development, GUIs change a lot.
GUIs generally involve dealing with text and storing state - ideal pythonisms
If your app is in c++/c#, then having the gui written in a different langauge enforces gui/logic separation.
Options are: wxpython/pyQT - equally good, all the functionality of w/qtx wx/qt from python, both the designers can spit out native python implementations.
IronPython - .net implmentation of python so all winforms and wpf directly from python. You get all the .net libs but only a subset of the native python ones, but it is very easy to mix python gui with other parts of the app writen in c# etc.
