According to the documentation, they're pretty much interchangeable. Is there a stylistic reason to use one over the other?
|
closed as not constructive by Daniel Fischer, plaes, chandresh_cool, Roman C, Ejay May 12 at 9:19
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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:
|
|||||||||||||||||||||
|
|
I prefer |
|||||||||||||||||||
|
|
Quoting the official docs at http://docs.python.org/ref/strings.html:
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. |
||||
|
I'm with Will:
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. |
|||
|
|
|
If the string you have contains one, then you should use the other. For example, 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 The Python code I've seen in the wild tends to favour |
||||
|
|
|
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. |
|||||
|
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! |
|||
|
|
|
Python uses quotes something like this:
Which gives the following output:
|
||||
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
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. |
|||||||
|
|
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... |
|||
|
|
|
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 ' |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
I aim to minimize both pixels and surprise. I typically prefer Perhaps it helps to think of the pixel minimization philosophy in the following way. Would you rather that English characters looked like |
||||
|
|
|
example :
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 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 '
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. |
||||
|
|