Can you please explain if I need to pass the variable multiple times for the string concatenation.
For eg.
String1 = "Hello"
String = "Good Morning"
String2 = String + "%s, %s" % (String1, String1)
My question is, how do I pass String1 just once?
Is there a better way to do it?
Stringdefined?