+ 1
How to display a string with double quotes
7 odpowiedzi
+ 4
To display a string with included quotes use:
print('the "Magic" of python')
+ 2
It depends on your programming language
+ 2
Either you use another set of quotes on the outside:
print('Test "doubles" now!')
Or you 'escape' them by marking them with a backslash.
print("Another \"Test\" coming up!")
+ 2
Lothar I'm going to try that now.
😁👍
+ 1
Print("Hello World")
Or do you wish to actually display the double quotes?
0
Its in python language