Shorten solution in Clear category for Best Stock by kulyapinmm
def best_stock(data): return max(data, key=data.get)
Sept. 25, 2019