Eg.
when iam trying to write something like below which uses an apostrophe in the sentence,
print(\'\'I am jack\'s raging bile duct\'\')
There are 2 ways:
print('I am jack\'s raging bile duct')
or:
print("I am jack's raging bile duct")