Use str. replace() to replace a string in a list strings = ["a", "ab", "aa", "c"] new_strings = [] for string in strings: new_string = string. replace("a", "1") Modify old string. new_strings. append(new_string) Add new string to list. print(new_strings)

Read more of this post