Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
By the power of sorted! solution in Clear category for Best Stock by evrur97
def best_stock(data):
return sorted(data, key=data.get, reverse=True)[0]
Aug. 1, 2019
Comments: