I have a list like this:
a = ["a","b","c","d","e"]
How do I insert a word to the end of each item in the list and make them as list itself?
Expected output:
a = [("a","TEST"),("b","TEST"),("c","TEST"),("d","TEST"),("e","TEST")]
I have tried a lot of ways but no luck getting that.