Here is the code for using the above list to make a LinkedList and to insert some test data:

myList = linkedList() for x in range(1,10): y = Node(x) myList.insert(y) print(myList.size())