+ 2
What is a double string?
If you mean another quotation mark inside a string, put a different type of quotation mark than the quotation mark around the string inside the string. Basically, like this:
example = "I'm good"
If you want the same type of quotation mark, I think you do this:
example = "I\"m good"



