3 lines
40 B
Python
3 lines
40 B
Python
|
def middle(L):
|
||
|
return L[len(L) // 2]
|