+ 2
Complete the code to create a string containing a double quote.
>>> " "
1 Odpowiedź
0
my_str = ‘“No”, he said, “I am your father”’
Above, ‘ starts and ends the string object, and “ is just another character in that string. You can start strings with ‘ or “, but then you must end it the same way.