0
Complete the code to create a string containing a double quote. >>> " \ "
Complete the code to create a string containing a double quote. >>>
3 odpowiedzi
0
????
0
If you want to use double quotes in your string you can write like this
print( ' "Double Quote" ')
output will be string containing double quotes
Output: "Double Quote"