Eg.
when iam trying to write something like below which uses an apostrophe in the sentence,
print(\'\'I am jack\'s raging bile duct\'\')
Use of double quotes will do the trick. print("I am jack's raging bile duct") I tried it and works good. Happy coding!