Re: [Tutor] Escaping a single quote mark in a triple quoted string.

2010-03-13 Thread Ray Parrish
Steven D'Aprano wrote: On Sun, 14 Mar 2010 04:33:57 am Ray Parrish wrote: Hello, I am getting the following - >>> String = """http://www.rayslinks.com";>Ray's Links""" >>> String 'http://www.rayslinks.com";>Ray\'s Links' Note the magically appearing back slash in my result string.

Re: [Tutor] Escaping a single quote mark in a triple quoted string.

2010-03-13 Thread Ray Parrish
Sander Sweers wrote: On 13 March 2010 18:33, Ray Parrish wrote: Hello, I am getting the following - String = """http://www.rayslinks.com";>Ray's Links""" String 'http://www.rayslinks.com";>Ray\'s Links' Note the magically appearing back slash in my result string.

Re: [Tutor] Escaping a single quote mark in a triple quoted string.

2010-03-13 Thread Steven D'Aprano
On Sun, 14 Mar 2010 04:33:57 am Ray Parrish wrote: > Hello, > > I am getting the following - > > >>> String = """http://www.rayslinks.com";>Ray's Links""" > >>> String > 'http://www.rayslinks.com";>Ray\'s Links' > > Note the magically appearing back slash in my result string. You are confusing t

Re: [Tutor] Escaping a single quote mark in a triple quoted string.

2010-03-13 Thread Sander Sweers
On 13 March 2010 18:33, Ray Parrish wrote: > Hello, > > I am getting the following - > String = """http://www.rayslinks.com";>Ray's Links""" String > 'http://www.rayslinks.com";>Ray\'s Links' > > Note the magically appearing back slash in my result string. It is not really there. When y

[Tutor] Escaping a single quote mark in a triple quoted string.

2010-03-13 Thread Ray Parrish
Hello, I am getting the following - >>> String = """http://www.rayslinks.com";>Ray's Links""" >>> String 'http://www.rayslinks.com";>Ray\'s Links' Note the magically appearing back slash in my result string. Now I tiry to escape the single quote. >>> String = """http://www.rayslinks.com";>Ra