Re: OOP no Python

2014-06-26 Thread Stéphane Wirtel
In English, Sorry On 26 Jun 2014, at 16:16, Samuel David wrote: Olá, Estou analisando algumas necessidades de nossa empresa e fiquei bastante interessado em resolve-las utilizando Python, lendo o FAQ do site de vcs percebo que está é uma linguagem bastante completa. Mas estou com uma

Re: OOP no Python

2014-06-26 Thread Mark Lawrence
On 26/06/2014 15:16, Samuel David wrote: Olá, python.pt https://www.facebook.com/python.pt IRC freenode #python-pt channel I think :) -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence --- This email is free from

Re: OOP no Python

2014-06-26 Thread Chris Angelico
2014-06-27 0:16 GMT+10:00 Samuel David samuel.co...@eos-hoepers.com: Mas estou com uma dúvida referente ao tópico “Por que eu deveria usar Python e não insira aqui a sua linguagem favorita?”. Google Translate tells me you're asking Why use Python instead of some other language?. (I'm going to

Re: OOP no Python

2014-06-26 Thread Guilherme Rezende
Samuel, http://groups.google.com/group/python-brasil On Thu, Jun 26, 2014 at 12:18 PM, Chris Angelico ros...@gmail.com wrote: 2014-06-27 0:16 GMT+10:00 Samuel David samuel.co...@eos-hoepers.com: Mas estou com uma dúvida referente ao tópico “Por que eu deveria usar Python e não insira

Re: OOP in Python book?

2007-07-30 Thread James Stroud
Dick Moores wrote: At 01:27 PM 7/28/2007, Dennis Lee Bieber wrote: On Fri, 27 Jul 2007 16:27:57 -0700, Dick Moores [EMAIL PROTECTED] declaimed the following in comp.lang.python: Well, the publisher is Prentice Hall, The world's leading educational publisher. Textbooks are typically

Re: OOP in Python book?

2007-07-30 Thread Steve Holden
James Stroud wrote: Dick Moores wrote: At 01:27 PM 7/28/2007, Dennis Lee Bieber wrote: On Fri, 27 Jul 2007 16:27:57 -0700, Dick Moores [EMAIL PROTECTED] declaimed the following in comp.lang.python: Well, the publisher is Prentice Hall, The world's leading educational publisher. Textbooks

Re: OOP in Python book?

2007-07-28 Thread Dick Moores
At 01:27 PM 7/28/2007, Dennis Lee Bieber wrote: On Fri, 27 Jul 2007 16:27:57 -0700, Dick Moores [EMAIL PROTECTED] declaimed the following in comp.lang.python: Well, the publisher is Prentice Hall, The world's leading educational publisher. Textbooks are typically expensive.

Re: OOP in Python book?

2007-07-27 Thread Dick Moores
At 08:41 AM 7/27/2007, Bill wrote: Does anyone out there have any information about this book. It's listed on Amazon to be published in November of this year. A simple Google search (1st page only) doesn't show anything useful, and I can't find a reference on the web sites of the authors. Neither

Re: oop in python

2005-12-30 Thread Larry Bates
novice wrote: hello over there! I have the following question: Suppose I created a class: class Point: pass then instanciated an instance: new = Point() So now how to get the instance new as a string: like ' new ' ;

Re: oop in python

2005-12-30 Thread jmdeschamps
Larry Bates wrote: novice wrote: hello over there! I have the following question: Suppose I created a class: class Point: pass then instanciated an instance: new = Point() So now how to get the instance new as a

Re: oop in python

2005-12-30 Thread jmdeschamps
(addendum) ... And even ... eval(t).max() 12 -- http://mail.python.org/mailman/listinfo/python-list

Re: oop in python

2005-12-27 Thread Uwe Hoffmann
novice schrieb: class Point: def _func_that_we_want_(self): return ... return self.__class__.__name__ http://docs.python.org/ref/types.html#l2h-109 -- http://mail.python.org/mailman/listinfo/python-list

Re: oop in python

2005-12-27 Thread Steven D'Aprano
On Tue, 27 Dec 2005 02:42:18 -0800, novice wrote: hello over there! I have the following question: Suppose I created a class: class Point: pass then instanciated an instance: new = Point() So now how to get the