Given a string S = hello this is me and rohan and vijay Replace and with a comma in python code example
Example 1: clean punctuation from string python
s.translate(str.maketrans('', '', string.punctuation))
Example 2: strip comma from string python
s = s.replace(',', '')