What is the best way to concatenate two triple quoted strings in python?
Example:
varA= """INSERT ....... """
VarB= """SELECT.......""""
Desired Final Query =
"""INSERT........
SELECT........"""
When I do :
varC=varA+varB
I get something like :
"""INSERT........
SELECT........"""
That is, I don't get the style I desire. How can I achieve this? Thanks in advance :)