I basically want to batch search/replace files with a few things. For example, if I have a big list with 3 strings, but I want to search and replace 3 found items with another 3 items.
mylist = [stuff, thing, stuff, things, thing]
All the “stuff” items would get replaced with another specified string. Same for the other items. Like:
mylist2 = [one, three, one, two, three]
I hope this makes sense. I’d rather not have to search/replace these terms one by one (I have a lot of terms in the file that need to be replaced with a lot of other terms.) I’m a beginner and any help would be appreciated!