0
Help
Complete the code to create a string containing a double quote. >>> " "
2 Answers
+ 1
you can use one of the following approaches to print double quote:
1)print("...\" ..\"...")
2)print('...".."...')
0
print(' " " ')
or use escape character \.
print("\" \"")