0
why don't you need /"
in print('print("print")') or whatever the example exactly was.
2 Answers
+ 3
We can use either single quotes for whole and use as many double quotes we like...
Eg. print('she said"i love u".he said "but i do not.."')
.
OR use double quotes for whole and use as many single quotes we like...
Eg. print("I'm in love with someone else...but she's not into me..")
.
OR if you have double quoted for all and you need to use double quotes in the program use \"
Eg. print("I yelled why god why.. \"bcoz u are a douche\", god replied")
0
the output of this program is actually :
print("print")
so what exactly what's your problem?