+ 1
Complete the code to create a string containing a double quote.
"--" what is it? how can sloved it with example please
19 Answers
+ 3
To output a string with double quotes, you would just need to use a backslash followed by the double quote to make sure that it doesn't end the string.
It should be "\""
+ 5
You can use single quotes to denote a string containing double quotes and vice versa.
'She said: "Watch out!" and grabbed him.'
"That's right, my bad."
+ 5
i can't sloved this.what i write in the gap.
+ 1
The right answer is:
>>>"\""
+ 1
\" this is not valid code
0
as mentioned above or use triple quote as string container
0
Thanks alot
0
How to solve this one
0
"\""
0
to containing double quotes for string we need to give “/“”
0
i dont know the answer it is not "\""
0
Yeah the answer is "\""
0
>>>"\"
0
I've been stucked in this phase for hours and can't seem to get it right.
/ is not working, /' is not working, /" is not working and one cannot type more than just two characters.
\" is what worked! pheeew! onto the next,
0
\"
0
The answer is "\""
0
>>>"\""
0
the answer is \"
0
In python, it is really simple, you would only have to add the backslash and it would be solved.