i need help with strings! someone know how to do double quote | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

i need help with strings! someone know how to do double quote

23rd Jun 2017, 10:28 PM
Alygaming
2 Answers
+ 3
"These are double quotes"
23rd Jun 2017, 10:42 PM
LordHill
LordHill - avatar
+ 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.'
23rd Jun 2017, 11:07 PM
ChaoticDawg
ChaoticDawg - avatar