message = "hello %s , how are you %s, welcome %s"%("john","john","john")
What is the most pythonic way to avoid specifying "john" 3 times and instead to specify one phrase.
message = "hello %s , how are you %s, welcome %s"%("john","john","john")
What is the most pythonic way to avoid specifying "john" 3 times and instead to specify one phrase.