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.17
TRX 0.24
JST 0.034
BTC 96335.91
ETH 2788.63
SBD 0.67