I have a string like: 'Treasury Notes 52.9 Certificates Of Deposit 15.9 Commercial Paper 15.9 Cash 15.3'
I want to split them in two parts: the numeric part and the non numeric one. For example: 'Treasury Notes', '52.9'.
I'm wondering how can I do that in Python.