The lists have the same number of elements, and the names are unique. I wonder, how can I make a dict in one action.
This is my current code:
    fees = [fee for fee in fees]
    names = [name for name in names]
    mdict = [
        {'fees': fee[i], 'names': names[i]}
        for i, val in enumerate(fees)]
 
     
     
     
     
    