Создайте класс тестера в связанном списке для отображения четных чисел
#python #data-structures Вопрос: Это мой класс узлов и класс Mylist class Node: def __init__(self, data=None, next=None): self.data = data self.next = next class MyList(): def __init__(self,head=None): self.head = head def…