I have a dictionary but I want to get only the values, not the keys. How can I do it?
`{0: 'despacio',
1: 'mios',
2: 'ir',
3: 'poca',
4: '_',
5: 'consigue',
6: 'eres'}
Desired output:
{'despacio',
'mios',
'ir',
'poca',
'_',
'consigue',
'eres'}`