I want to remove special characters from tuple. Consider an example
(['\x0cSome Namel\n'],['\x0c4739 2332 3450 1111\n'])
I want to get output to be
([Some Name ],[4739 2332 2450 1111])
I tried using split
and replace
even after using that it is returning same output