+ 1
How to create a string containing double quote
2 odpowiedzi
+ 2
Escaping the double quote: "use the \"quote\" "
Or using the single for the string: 'use the "quote" '
Both have te same result: use the "quote"
+ 1
print(' "abc" ')
print(" 'abc' ")