Menu
×
×
Correct!
Exercise:Complete the code for the Linked List class.
class Node:
def __init__(self, data):
self.data = data
self.next = None
Not CorrectClick here to try again. Correct!Next ❯class Node: def __init__(self, data): self.data = data self.= None |