I have a dictionary
lang = {\'ar\':\'arabic\', \'ur\':\'urdu\',\'en\':\'english\'}
What I want to do is to delete all the keys except one key.
This is quite fast:
En_Value = lang['en'] lang.clear() lang['en'] = En_Value