0
How to print a string with quotation mark?
How to print j.b with quotation mark?
3 odpowiedzi
+ 1
What do you mean with inverted comma? Is that a special sign?
0
I mean quotation mark
0
There are a few ways:
print(" ' ") #different qmarksoutside
print(' \' ') #special marking
This is explained very early in the Python tutorial - just go on with it!