What is the most pythonic way to avoid specifying the same value in a string

Viewed 294
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.

4 Answers
Related