Look at the code below: # mystringfunctions.py
def cap(s): print s print "the name of this function is " + "???" cap ("hello") Running the code above gives the following output >>> hello the name of this function is ??? >>> I would like the output to be >>> hello the name of this function is cap >>> Is that possible ? -- http://mail.python.org/mailman/listinfo/python-list