I’m assuming this is easy but I want to make something like:
apple = “apple aka “red orange””
but it just reads
apple = "apple aka "
i want the string value to be
“apple aka “red orange””
thanks, ik there is a way I just forget how
I’m assuming this is easy but I want to make something like:
apple = “apple aka “red orange””
but it just reads
apple = "apple aka "
i want the string value to be
“apple aka “red orange””
thanks, ik there is a way I just forget how
Prefix the quotation marks with \
apple = "apple aka \"red orange\""
It can be done with Single Quotation marks too
apple = 'apple aka "red orange"'