0
who can help me
Complete the code to create a string containing a double quote. >>> ( )
1 Answer
0
>>> print('""')
Pass double quotes enclosed in single quotes to print function.
or
>>> print("\"\"')
Complete the code to create a string containing a double quote. >>> ( )