Let's say I have a list of strings like:
my_list = ["house","table","coffe","door"]
I was wondering if there is a way to add the same word in each string inside the list.
For example, let's say I want to add the word "word" in each string. The result would be :
my_list = ["house word","table word","coffe word","door word"]
Do you have an idea on how to do that ?
Thanks!