I have a string of the form:
"77.1234 15.3456,79.8765 15.6789,81.9876 16.0011"
I need to convert it to the form:
[[77.1234,15.3456],[79.8765,15.6789],[81.9876,16.0011]]
Can someone help me to accomplish this using the replace() function in python? If it cannot be achieved with that, then what other function provided by python can be used?
Thank you.