max with key solution in Clear category for Best Stock by ludek.reif
def best_stock(data): return max(data, key=lambda x: data[x])
Sept. 18, 2019