Re: Is there pointer * in Python?

2007-11-23 Thread Donn Ingle
> think inside Python... Assuming you *can* think while being slowly crushed and digested :D \d -- http://mail.python.org/mailman/listinfo/python-list

Re: Is there pointer * in Python?

2007-11-23 Thread M�ta-MCI (MVP)
Hi! > like in C Why think to C? Why not Cobol? APL? Intercal? For think right in Python, forget C, forget others languages, think inside Python... Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: Is there pointer * in Python?

2007-11-22 Thread dimavs
On Nov 23, 1:33 pm, Davy <[EMAIL PROTECTED]> wrote: > When I read "programming python", I found there is a code like > def parse(self, *text): > And I recall there is "**args" in Python, what's "**" mean? Unpacking Argument Lists - http://docs.python.org/tut/node6.html#SECTION006740

Is there pointer * in Python?

2007-11-22 Thread Davy
Hi all, When I read "programming python", I found there is a code like def parse(self, *text): while text is a string. What's "*" mean?(Does it mean pointer like in C?) And I recall there is "**args" in Python, what's "**" mean? Best regards, Davy -- http://mail.python.org/mailman/listinfo/