Run
x = ['apple', 'banana', 'mango'] shortest = min(x, key=len) print(shortest)
Output