0
string for double quote
how do you create a string for double quote in python
2 Respostas
+ 2
Do you mean, how do you use a double quote in a string?
a = "\"This\" is how you escape characters"
You use the backslash to "escape" the next character which would otherwise have a special meaning
+ 1
You can also use double quotes within a string wrapped by single quotes, or use single quotes within a string if wrapped by double quotes-without using an escape character:
print(" 'hello' ")
print(' "hello" ')