I have pandas in format like this
| Group    | ID_LIST        |
| -------- | -------------- |
| A        | [1,2,3]        |
| B        | [1,3,5]        |
| C        | [2,4]          |
I would like to delist into separate row like this
| Group    | ID_LIST        |
| -------- | -------------- |
| A        | 1              |
| A        | 2              |
| A        | 3              |
| B        | 1              |
| B        | 3              |
| B        | 5              |
| C        | 2              |
| C        | 4              |
If it possible to done with pandas function ? or should I approach with convert to list instead?
 
     
     
     
    