I have a list that looks like:
{
'J2EE': 0.0202219636,
'financial': 0.2439565346,
'Guru': 0.0202219636,
'AWS': 0.0202219636,
'next generation': 0.12072663160000001,
'Machine Learning': 0.2025762767,
'technology': 0.066936981
}
How do I extract only the text parts and make my list look like:
['J2EE', 'financial', 'Guru', 'AWS', ...]
Should I use Regular expressions?