I have the data like this:
name SF
a {1,23,4,5}
b {1,3,43,5}
c {1,23,24,5}
d {1,23,54,15}
I want to let the SF set
to list
what I expect output is:
name SF
a [1,23,4,5]
b [1,3,43,5]
c [1,23,24,5]
d [1,23,54,15]
So,How can I do this?