In article <[email protected]>, Franck Ditter <[email protected]> wrote: > >When starting with Python (simple programs and GUIs) should I start >with Python 3.x ?
That depends on the extent to which you rely strictly on the standard Python library. If there's any likelihood that you will want to use random third-party libraries, you probably want to stick with 2.x; ditto if you want to rely on your users having their own copy of Python (in which case you probably should target Python 2.4). -- Aahz ([email protected]) <*> http://www.pythoncraft.com/ "If you don't know what your program is supposed to do, you'd better not start writing it." --Dijkstra -- http://mail.python.org/mailman/listinfo/python-list
