In python both single and double quotes are functionally the same, many developers have their preferences, however you can use them interchangeably. One thing to be careful about is if you've started a string with single quotes you can't close it with double quotes e.g.
'abcd' is right, 'abcd" is wrong.