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
To add both the single and double quote on python use screened (escaped) quotes. Try this for example:
print(" just display ' and \" ")
The \" tells python this is not the end of the quoted string.
\"