Time to allow our LinkedList to add new nodes to the end of the list. Kind of like a regular Python List's .append method.
LinkedList
.append
Complete the add_to_tail method. It adds a new node to the end of the list and returns nothing.
add_to_tail
head
None
for
__iter__
next