str1 = "series of sentences that are organized and coherent, and are all related to a single topic. Almost every piece of writing you do that is longer than a few **sentences** should be organized into paragraphs."
REPLACE_STRING = {"series":"web" , "sentence":"long paragraph"}
Output:
web of long paragraph that are organized and coherent, and are all related to a single topic. Almost every piece of writing you do that is longer than a few **long paragraph** should be organized into paragraphs.
Basically need to replace all values in a str with the key present in the dictionary in one go.