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.
pop() it via for loop like this
pop()
for
[s.pop(k) for k in list(s.keys()) if k != 'en']