0

Help

Complete the code to create a string containing a double quote. >>> " "

5th Oct 2017, 3:39 PM
Sam Marsh
Sam Marsh - avatar
2 Answers
+ 1
you can use one of the following approaches to print double quote: 1)print("...\" ..\"...") 2)print('...".."...')
5th Oct 2017, 4:04 PM
arashi80
arashi80 - avatar
0
print(' " " ') or use escape character \. print("\" \"")
5th Oct 2017, 4:19 PM
Abu Sayem