Re: [NooB] Using Escape Sesquences with Strings...

2005-02-11 Thread administrata
bruno modulix <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > administrata wrote: > > Hello! :) > > I've reading 'Python Programmin for the Absolute beginner'. > > I got questions which is... > > > > print "\t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - " > > >

Re: [NooB] Using Escape Sesquences with Strings...

2005-02-11 Thread bruno modulix
administrata wrote: Hello! :) I've reading 'Python Programmin for the Absolute beginner'. I got questions which is... print "\t - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - " rock = """ Igneous Sedimentary Metamorphic Lava Grains Marble Ram

Re: [NooB] Using Escape Sesquences with Strings...

2005-02-11 Thread Daniel Bickett
administrata wrote: > print \trock Your problem lies in this line. The escape sequence \t is not a variable, so to speak. It is just that, an escape sequence, so it must be located inside of a string: print "\t" + rock -- Daniel Bickett dbickett at gmail.com http://heureusement.org/ -- http://