Reformat symbols in list

Saw this in some lecture, easy reformatting using multiple cursor in VS Code

Input

inputs = [ 1 2 3 4 5 ]
outputs = [ 1 2 3 4 5 ]

Output

inputs = [ i1 i2 i3 i4 i5 ]
outputs = [ (o1,i1) (o2,i2) (o3,i3) (o4,i4) (o5,i5) ]