Please help make a function shorter(l1, l2) that takes as inputs two lists l1 and l2, and that return the length of the shorter (of the two) lists. For example: (would love an explanation to it too)
>>> shorter_len(['dog', 'two'],['world', 'is', 'aweosme'])
2
>>> shorter_len([5, 'tps', '876', ['bp', 100]], ['u', 'are', 'tired'])
3
>>> print(shorter_len(['start', 'finsih'], [['start', 'fin ','finish']]))
1