0
i need help with strings! someone know how to do double quote
2 ответов
+ 3
"These are double quotes"
+ 2
In python you can output a double quote in a string by using single quotes as the outside quotes instead of double quotes:
'The "quick" brown fox jumped over the moon.'
You can also escape a double or single quote in a string by prefixing either with a backslash:
"The \"quick\" brown fox jumped over the moon."
'The \'quick\' brown fox jumped over the moon.'