I have a df which have a column called Description and it has values like:
ID   Description
1    (a) this is good (b) bad (c) average
2    Ok
3    i am rahul works on (a) stack overflow (b) stack exchange
Expected DF:
 ID      Description
1        (a) this is good
1        (b) bad
1        (c) average
2        Ok
3        i am rahul works on (a) stack overflow
3        (b) stack exchange
I have seen answers like this and this which explodes column basis on separators but I need to explode based on bullet points.
 
     
    