vote up 22 vote down star
4

According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to use one over the other?

flag

Great question, I was thinking about this as well. – Daniel Apr 20 at 20:49

14 Answers

vote up 30 vote down check

I like to use double quotes around strings that are used for interpolation or that are natural language messages, and single quotes for small symbol-like strings, but will break the rules if the strings contain quotes, or if I forget. I use triple double quotes for docstrings and raw string literals for regular expressions even if they aren't needed.

For example:

light_messages = {
    'English': "There are %(number_of_lights)s lights.",
    'Pirate':  "Arr! There be %(number_of_lights)s lights."
}

def lightsMessage(language, number_of_lights):
    """Return a language-appropriate string reporting the light count."""
    return light_messages[language] % locals()

def isPirate(message):
    """Return True if the given message sounds piratical."""
    return re.search(r"(?i)(arr|avast|yohoho)!", message) is not None
link|flag
+1 for the example – Paolo Bergantino Mar 10 at 6:32
Interesting, I use them in exactly the same way. I don't remember ever reading anything to nudge me in that direction. I also use triple single quotes for long string not intended for humans, like raw html. Maybe it's something to do with English quote rules. – mike.amy Oct 21 at 17:15
vote up 0 vote down

Your team's taste or your project's coding guidelines.

If you are in a multilanguage environment, you might wish to encourage the use of the same type of quotes for strings that the other language uses, for instance. Else, I personally like best the look of '

link|flag
vote up 0 vote down

None as far as I know. Although if you look at some code, " " is commonly used for strings of text (I guess ' is more common inside text than "), and ' ' appears in hashkeys and things like that.

link|flag
vote up 12 vote down

If the string you have contains one, then you should use the other. For example, "You're able to do this", or 'He said "Hi!"'. Other than that, you should simply be as consistent as you can (within a module, within a package, within a project, within an organisation).

If your code is going to be read by people who work with C/C++ (or if you switch between those languages and Python), then using '' for single-character strings, and "" for longer strings might help ease the transition. (Likewise for following other languages where they are not interchangeable).

The Python code I've seen in the wild tends to favour " over ', but only slightly. The one exception is that """these""" are much more common than '''these''', from what I have seen.

link|flag
vote up 1 vote down

I use double quotes in general, but not for any specific reason - Probably just out of habit from Java.

I guess you're also more likely to want apostrophes in an inline literal string than you are to want double quotes.

link|flag
vote up 3 vote down

I prefere ', especially for '''docstrings''', as I find """this creates some fluff""". Also, ' can be typed without the shift key...

link|flag
vote up 6 vote down

I'm with Will:

  • Double quotes for text
  • Single quotes for anything that behaves like an identifier
  • Double quoted raw string literals for regexps
  • Tripled double quotes for docstrings

I'll stick with that even if it means a lot of escaping.

I get the most value out of single quoted identifiers standing out because of the quotes. The rest of the practices are there just to give those single quoted identifiers some standing room.

link|flag
vote up -1 vote down

I agree with Daren. Single quotes are great since they do not require the shift key.

link|flag
vote up 0 vote down

It's probably a stylistic preference more than anything. I just checked PEP 8 and didn't see any mention of single versus double quotes.

I prefer single quotes because its only one keystroke instead of two. That is, I don't have to mash the shift key to make single quote.

link|flag
vote up 2 vote down

Quoting the official docs at http://docs.python.org/ref/strings.html:

In plain English: String literals can be enclosed in matching single quotes (') or double quotes (").

So there is no difference. Instead, people will tell you to choose whichever style that matches the context, and to be consistent. And I would agree - adding that it is pointless to try to come up with "conventions" for this sort of thing because you'll only end up confusing any newcomers.

link|flag
vote up 0 vote down

Personally I stick with one or the other. It doesn't matter. And providing your own meaning to either quote is just to confuse other people when you collaborate.

link|flag
vote up 0 vote down

I chose to use double quotes because they are easier to see.

link|flag
vote up 0 vote down

I just use whatever strikes my fancy at the time; it's convenient to be able to switch between the two at a whim!

Of course, when quoting quote characetrs, switching between the two might not be so whimsical after all...

link|flag
vote up 1 vote down

Triple quoted comments are an interesting subtopic of this question. PEP 257 specifies triple quotes for doc strings. I did a quick check using Google Code Search and found that triple double quotes in Python are about 10x as popular as triple single quotes -- 1.3M vs 131K occurrences in the code Google indexes. So in the multi line case your code is probably going to be more familiar to people if it uses triple double quotes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.