def get_key(dict): 
    list = [] 
    for key in dict.keys(): 
        list.append(key)           
    return list