# Middle of the [[linked-list|Linked List]] ```python slow = fast = head while fast and fast.next: slow = slow.next fast = fast.next.next return slow ```