Hello,
I can't have my concatenated string span on multiple lines.
e.g.
str1 = "val1 "
str2 = "val2"
strlong = "line 1" +
str1 +
"line3" + str2
It couldn't also accomblished by using tripple coute """ because the expression would not get evaluated.
(I need to span multiple lines because of assembling long sql query.)
Thanks for any help.
I can't have my concatenated string span on multiple lines.
e.g.
str1 = "val1 "
str2 = "val2"
strlong = "line 1" +
str1 +
"line3" + str2
It couldn't also accomblished by using tripple coute """ because the expression would not get evaluated.
(I need to span multiple lines because of assembling long sql query.)
Thanks for any help.