i have a table in pandas df
bigram frequency
(123,3245) 2
(676,35346) 84
(93,32) 9
and so on, till 50 rows.
what i am looking for is, split the bigram column into two different columns removing the brackets and comma like,
col1 col2 frequency
123 3245 2
676 35346 84
93 32 9
is there any way to split if after comma,and removing brackets.