When used to enclose strings, I'm wondering if one is more correct or common than the other? Do any firms or coding teams insist on one way or another?
Edit:
Since you would use double quotes if you are doing string interpolation, and double quotes also works for variable assigning, eg
str = "string"
Then is it acceptable to only use " " at all times? Then that saves the programmer from having to differentiate between whether to use ' ' or " ".