SyntaxFix
Write A Post
Hire A Developer
Questions
You need to escape it. (Using Python 3 print function):
>>> print("The boy said \"Hello!\" to the girl") The boy said "Hello!" to the girl >>> print('Her name\'s Jenny.') Her name's Jenny.
See the python page for string literals.