Is there any possibility to duplicate part of the row based on the delimiter
For example, if I have df like this:
Cars             Country       Trans                     trans_id
Alto             Australia     Automatic & Manual        auto & man
I want to convert each row on the & delimiter into 2 rows and keep the other columns same
The desired output should be:
    Cars             Country       Trans                     trans_id        New_Trans     NewTransID
    Alto             Australia     Automatic & Manual        auto & man      Automatic     auto
    Alto             Australia     Automatic & Manual        auto & man      Manual        man
 
    