Hi Folks

def myDef(x)
        doSomething x
        result = x.????
        return coolThings
---------------------------------

WhatYourName = ('python','is','cool')

myDef(WhatYourName)

so what I am looking for in myDef

        result = WhatYourName

----------------------------------
again :
IhaveOtherName = ('some','thing')

myDef(IhaveOtherName)

so what I am looking for in myDef

        result = IhaveOtherName

----------------------------------

Is it possible with python?

Regards

macm
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to