You are viewing a single comment's thread from:

RE: Payment for Coding done

Populate the airline_prices dictionary

for flight in route_data:
    airline = flight["airline"]
    price = flight["price"]
    if airline not in airline_prices:
        airline_prices[airline] = []
    airline_prices[airline].append(price)

Coin Marketplace

STEEM 0.18
TRX 0.16
JST 0.030
BTC 66431.89
ETH 2569.32
USDT 1.00
SBD 2.65