Mike Meyer wrote: > The url is http://www.mired.org/home/mwm/try_python/. Reports of > problems would appreciated.
You're probably already aware of this, but the online help utility doesn't work. It exits before you can type anything into it: ---------------------------------------------------------------------- >>> help() Welcome to Python 2.4! This is the online help utility. If this is your first time using Python, you should definitely check out the tutorial on the Internet at http://www.python.org/doc/tut/. Enter the name of any module, keyword, or topic to get help on writing Python programs and using Python modules. To quit this help utility and return to the interpreter, just type "quit". To get a list of available modules, keywords, or topics, type "modules", "keywords", or "topics". Each module also comes with a one-line summary of what it does; to list the modules whose summaries contain a given word such as "spam", type "modules spam". help> You are now leaving help and returning to the Python interpreter. If you want to ask for help on a particular object directly from the interpreter, you can type "help(object)". Executing "help('string')" has the same effect as typing a particular string at the help> prompt. >>> ---------------------------------------------------------------------- STeVe -- http://mail.python.org/mailman/listinfo/python-list