up vote 173 down vote favorite
51
share [g+] share [fb]

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

link|improve this question

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

20 Answers

up vote 153 down vote accepted

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! Thar be %(number_of_lights)s lights."
}

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

def is_pirate(message):
    """Return True if the given message sounds piratical."""
    return re.search(r"(?i)(arr|avast|yohoho)!", message) is not None
link|improve this answer
11  
+1 for the example – Paolo Bergantino Mar 10 '09 at 6:32
3  
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 A Oct 21 '09 at 17:15
5  
Most python coders code it that way. There is no explicit rule, but because we often read the code that way, it becomes an habit. – e-satis Mar 8 '10 at 14:35
except for the regex I do the same thing – igorgue Mar 25 '10 at 18:07
1  
I use the same convention, plus I abuse it by having vim highlight everything inside triple single quotes as SQL. – RoundTower Jan 16 at 22:26
show 6 more comments
feedback

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

link|improve this answer
I tend to prefer single quotes, since I write SQL code every day, and single quotes are used for string literals in T-SQL. But I do use triple double quotes, because docstrings can sometimes use a bit of fluff in them. – eksortso May 20 '10 at 15:28
I prefer single quotes everywhere for readability (indeed, double quotes cause more fluff). But as I come from C, I almost automatically type double quotes :) – wump Jul 2 '10 at 7:48
@wump, yes. My C# compiler is forever complaining about my character literals... – Daren Thomas Jul 6 '10 at 6:53
2  
Using everywhere simple quotes for strings allows me to disable parts of source code using three double quotes - kind of '#if 0' and '#endif'. – dim Jan 21 '11 at 22:53
2  
" requires a shift key only on a PC QWERTY keyboard. On my keyboard, " is actually easier to type. – e-satis Oct 28 '11 at 12:49
show 2 more comments
feedback

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|improve this answer
feedback

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|improve this answer
yeah, for me consistency is key, so I just use singles everywhere. Fewer keypresses, unambiguous and consistent. – mlissner Aug 6 '11 at 6:19
feedback

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|improve this answer
feedback

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|improve this answer
+1 for mentioning a PEP. – Buttons840 Dec 22 '11 at 21:37
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

In Perl you want to use single quotes when you have a string which doesn't need to interpolate variables or escaped characters like \n, \t, \r, etc.

PHP makes the same distinction as Perl: content in single quotes will not be interpreted (not even \n will be converted), as opposed to double quotes which can contain variables to have their value printed out.

Python does not, I'm afraid. Technically seen, there is no $ token (or the like) to separate a name/text from a variable in Python. Both features make Python more readable, less confusing, after all. Single and double quotes can be used interchangeably in Python.

link|improve this answer
feedback

Python uses quotes something like this:

mystringliteral1="this is a string with 'quotes'"
mystringliteral2='this is a string with "quotes"'
mystringliteral3="""this is a string with "quotes" and more 'quotes'"""
mystringliteral4='''this is a string with 'quotes' and more "quotes"'''
mystringliteral5='this is a string with \"quotes\"'
mystringliteral6='this is a string with \042quotes\042'
mystringliteral6='this is a string with \047quotes\047'

print mystringliteral1
print mystringliteral2
print mystringliteral3
print mystringliteral4
print mystringliteral5
print mystringliteral6

# output:
>>> this is a string with 'quotes'
>>> this is a string with "quotes"
>>> this is a string with "quotes" and more 'quotes'
>>> this is a string with 'quotes' and more "quotes"
>>> this is a string with "quotes"
>>> this is a string with 'quotes'
link|improve this answer
feedback
"If you're going to use apostrophes, 
       ^

you'll definitely want to use double quotes".
   ^

For that simple reason, I always use double quotes on the outside. Always

Speaking of fluff, what good is streamlining your string literals with ' if you're going to have to use escape characters to represent apostrophes? Does it offend coders to read novels? I can't imagine how painful high school English class was for you!

link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

' = "

/ = \ = \ example :

    f = open('c:\word.txt', 'r')
    f = open("c:\word.txt", "r")
    f = open("c:/word.txt", "r")
    f = open("c:\\\word.txt", "r")

Results are the same

=>> no, they're not the same. A single backslash will escape characters. You just happen to luck out in that example because \k and \w aren't valid escapes like \t or \n or \ or \"

If you want to use single backslashes (and have them interpreted as such), then you need to use a "raw" string. You can do this by putting an 'r' in front of the string

im_raw = r'c:\temp.txt'
non_raw = 'c:\\temp.txt'
another_way = 'c:/temp.txt'

As far as paths in Windows are concerned, forward slashes are interpreted the same way. Clearly the string itself is different though. I wouldn't guarantee that they're handled this way on an external device though.

link|improve this answer
feedback

I use double quotes because I have been doing so for years in most languages (C++, Java, VB…) except Bash, because I also use double quotes in normal text and because I'm using a (modified) non-English keyboard where both characters require the shift key.

link|improve this answer
feedback

Lots of answers about style and semantics here, but how about something concrete?

In Perl you want to use single quotes when you have a string which doesn't need to interpolate variables or escaped characters like \n, \t, \r, etc.

It makes the code compile faster, because the parser knows it doesn't have to examine single quoted strings for escapes.

I would hope Python is built the same way.

link|improve this answer
4  
nope, escapes work in single- and double-quoted strings in python. and anyway, neither language is compiled, optimised bytecode will reflect the same string. It all just gets passed along to the operating system, where the appropriate library handles everything. – Stefano Palazzo Sep 14 '10 at 12:32
feedback

Your Answer

 
or
required, but never shown

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