apostrophe in python string code example
Example: apostrophe in python
#to add an apostrophy to python just add backslash (\) before it
print('here's a meme)
print('here\'s a meme)
#or just use
print("here's a meme")
#to add an apostrophy to python just add backslash (\) before it
print('here's a meme)
print('here\'s a meme)
#or just use
print("here's a meme")