I declare a python dictionary like this using double quotes;
{
"Name":"John",
"Date":"2/18/1998",
"Profit":25.12
}
The same python dictionary can be written like this using single quotes;
{
'Name':'John',
'Date':'2/18/1998',
'Profit':25.12
}
What is the difference, if any, between the two? What is the best practice in python? Practical-wise, I encounter no difference so far. I'm not sure if I missed out anything.