I\'m dong a Node exercise on python today. I seem to have accomplished a part of it, but it is not a complete success.
class Node: def __init__(self, ca
def printLinkedList(self): node = self.head while node != None: print(node.getData()) node = node.getNext()