"Emile van Sebille" wrote
Redundant, yes; syntax error, no. IIRC, semi-colons are optional line
terminators.
statement terminators I think. ie you can have several statements
on a line by separating with semicolons:
x=5; print x+2
7
Alan G
__
W W wrote:
On Wed, Apr 15, 2009 at 12:27 PM, Carnell, James E
mailto:jecarn...@saintfrancis.com>> wrote:
Since # the list seems thick with OOP questions at the moment, I thought
this might # be relevant. Digest and enjoy.
class Item ( object ):
def __init__( self ):
On Wed, Apr 15, 2009 at 12:27 PM, Carnell, James E <
jecarn...@saintfrancis.com> wrote:
> Since # the list seems thick with OOP questions at the moment, I thought
> this might # be relevant. Digest and enjoy.
>
> class Item ( object ):
>
>def __init__( self ):
>self._FullName = ''
>
"""But what I hope is that the code # sparks conversations about what I did in
this code and why I did it."""
If anyone answers me thank you. really.
Nevertheless, I am personally not pursuing to understand this code. Ronald
Weidner left on vacation and won't be back until the 19th (I don't kno
class Item ( object ):
def __init__( self ):
self._FullName = ''
self._Recovery = 0
self._Exporter = SimpleItemExporter (); # Don't
understand
Bummer, I was hoping to consider myself at the tip of intermediate
python programming ...
This is the first time I h
Since # the list seems thick with OOP questions at the moment, I thought
this might # be relevant. Digest and enjoy.
class Item ( object ):
def __init__( self ):
self._FullName = ''
self._Recovery = 0
self._Exporter = SimpleItemExporter (); # Don't
understand