class Node(object):
    
    """The node of a singley linked list; contains only data and a link to the
    next node."""
    
    def __init__(self, data):
        self.data = data
        self.next = None
        
    def __str__(self):
        return str(self.data)
    
    

