dict.get(key) solution in Clear category for Best Stock by David_Jones
def best_stock(data): return max(data, key=data.get)
June 17, 2019
Comments: