class Node:
    '''A linked-list node containing data and a reference to the next Node.'''

    def __init__(self, initdata):
        '''A Node to hold initdata with no next Node.'''
        self.data = initdata
        self.next = None

if __name__ == '__main__':
    front = Node("Too")
    front.next = Node("many")
    front.next.next = Node("boxes")
    f = front
    while f != None:
        print f.data
        f = f.next

    front = Node(95)
    temp = Node(104)
    temp.next = front
    front = temp
    print front.next.data