I think you are talking about python. By the way we can use + also instead of ,
it will join the whole string
15th May 2020, 3:42 AM
Ayush Kumar
+ 2
you need to split then join if you want remove the commas.
assuming you are talking about Python.
str = "a,b,c,d,e"
str = "".join(str.split(","))
str is now joined without comma