I don't know if this question has been asked before, but it seems that I can't find the function that I am looking for. I want to add two different string to different strings in a list. Something like this:
old_list: ['spider','cat','iron','super','bat']
old_list: ['spiderman','catwoman','ironman','superwoman','batman']
So I want some kind of function that changes the strings by adding 'man' or 'woman' without making a new list. I think/know it can be done with some kind of for-loop but can't seem to find a easy way of doing it. And I am sorry if this question has been asked before, but I can't really find an answer to this specific function.