Pythonistas,
I have got a wx.gauge running and I cannot get it to go away! Any quick
and dirty ideas or do you need my ugly syntax. I'm a newbie!
Thanks
Matt
Matthew Pirritano, Ph.D.
Research Analyst IV
Medical Services Initiative (MSI)
Orange County Health Care Agency
(714) 568-5
Alan, it is great that you are taking such an active interest in computers.
As far as continuing your education in the field and Python I would suggest
reading "Python Programming: An Introduction to Computer Science" and "Gray
Hat Python: Python Programming for Hackers and Reverse Engineers".
M
On Wed, Dec 30, 2009 at 8:39 AM, spir wrote:
> Lie Ryan dixit:
>
>> class Error(Exception):
>> def __init__(self, value):
>> self.value = value
>> def printer(self, value):
>> print self.value
>
> You can also use __str__ instead of printer. This will give a standard ou
Lie Ryan dixit:
> class Error(Exception):
> def __init__(self, value):
> self.value = value
> def printer(self, value):
> print self.value
You can also use __str__ instead of printer. This will give a standard output
form for your error automatically used by print and
Srry sorry! Phone left on in pocket!!
On 12/30/09, Luke Paireepinart wrote:
> Pqa
> pAzazqzz /// / // @?&// ?/& /@ /q
>
> On 12/28/09, Richard Hultgren wrote:
>> I am learning Python slowly. I would like to begin learning all about
>> how
>> computers work from the bottom up. I have