Hi I\'m trying to have a string that contains both single and double quotation in python -- (\'\"). The reason I need this expression is to use as an input to some external
Use triple-quoted strings:
""" This 'string' contains "both" types of quote """ ''' So ' does " this '''