Single or double quotes - YangHee-Min/spinalcordtoolbox GitHub Wiki
Quotes
Single quotes
When defining a string, single quotes must be used. Example:
example = 'hello world'
Double quotes
If using quotes within a string, double quotes must be used instead. Example:
example = 'Please display the message "hello world" to the user.'