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 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "
> >
>
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
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://