Is there any way to replace multiple characters in a string at once, so that instead of doing:
"foo_faa:fee,fii".replace("_", "").replace(":", "").replace(",", "")
just something like (with str.replace())
"foo_faa:fee,fii".replace(["_", ":", ","], "")