For multiline string value like below:
var_a = "This is a very very"\
"very long string that "\
"consists of 3 lines"
A comment can be added only on the last line. Example:
var_a = "This is a very very"\
"very long string that "\
"consists of 3 lines" #add comment here
Adding comment anywhere else is a syntax error.
Is there any way to add comment on the first line?