I have following code:
print "my name is [%s], I like [%s] and I ask question on [%s]" % ("xxx", "python", "stackoverflow") I want to split this LONG line into multiple lines:
print "my name is [%s]" ", I like [%s] " "and I ask question on [%s]" % ("xxx", "python", "stackoverflow") Can you please provide the right syntax?