On 27 July 2006, Tim Chase wrote: > A couple of hopefully short (interrelated) questions: > > 1) is there a way to suppress the banner when starting Python > interactively? [...] > > 2) is there a way to change the two prompts from ">>>" and "..." > to other options? [...]
I noticed that the first part of your query was never answered. To combine both of these, try the following (modified to taste): python -ic 'import sys; sys.ps1="$ "; sys.ps2="> "' - Eric -- http://mail.python.org/mailman/listinfo/python-list