So I am having a weird issue here When I am stripping a certain string which have parenthesis, its removing the first word after the parenthesis Ex:
c = 'PurchaseOrderItem(d330d1adf0)'
print (c.strip("PurchaseOrderItem("+")"))
OUTPUT : 330d1adf0
the above output should have the char 'd', but its removing it