Having dictionary like this
d = {
        'airplane': 0, 
        'automobile': 1, 
        'bird': 2, 
        'cat': 3, 
        'deer': 4, 
        'dog': 5, 
        'frog': 6, 
        'horse': 7, 
        'ship': 8, 
        'truck': 9
}
and a list
l = [3, 4, 1, 7, 9, 0]
how can i create new list conditioning to dictionary
new_list = ['cat', 'deer', 'automobile', 'horse', 'truck', 'airplane']
 
     
     
     
     
     
    