0
How can I print double quotes using print statement
Print("") doesn't work
3 Antworten
+ 4
print(' "something" ')
-> put single quotes around it
+ 2
Thank you so much
+ 2
Try
print ("\"\"")
This is the generic way to print double quotes in many languages