I've got a python string
s = "Abc(problem=None, fds=5, sff=(2, 1, 0))"
s2 = "Abc(problem=None)"
What I want to do is remove the "problem=None, "
So it'll looks like
s = "Abc(fds=5, sff=(2, 1, 0))"
s2 = "Abc()"
Please mind the ','
How to achieve this? Thanks very much!!