Hi I'm trying to have a string that contains both single and double quotation in python -- ('"). The reason I need this expression is to use as an input to some external batch command. However, python always automatically corrects this to (\' "). I wonder if there's a way to put a double quotation and a single quotation together as it is. Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use triple quotes.
or
Keep in mind that just because Python Using an example from the Python tutorial:
Even though the second string appears one character shorter because it doesn't have a backslash in it, it's actually the same length -- the backslash is just to escape the single quote in the single quoted string. Another example:
If you don't let Python format the string, you can see the string hasn't been changed, it was just Python trying to display it unambiguously. See the tutorial section on strings. |
|||||||
|
|
Use triple-quoted strings:
|
|||||
|
printthe output to be sure what you're getting. Note that what you see fromrepr()and what you see at>>>prompt don't match what is actually in the string. Therepr()and>>>versions are Python source code. Not the actual value. Please update your question with specific examples. – S.Lott Sep 20 '11 at 14:48