Middle of the Linked List

slow = fast = head
while fast and fast.next:
    slow = slow.next
    fast = fast.next.next
return slow