In Python3, I'd like to write a blanket message that goes to all items in the list (names of dinner guests, in this case) without having to print each message individually.
For example, if the list is:
guest_list = ['John', 'Joe', 'Jack']
I want it to print this line below using each person's name without having to individually print the message 3 times:
print("Hello, " + *name of guest from the list above here* + "! We have found a bigger table!")
Desired Result:
Hello, John! We have found a bigger table!
Hello, Joe! We have found a bigger table!
Hello, Jack! We have found a bigger table!
Is this possible? If so, how? Thanks to any help offered!