1 min read
I want to know about the code for the structure of the node in Linked List in Python. As the Linked list is the combination of multiple node, So How to create a structure of single node for linked list using python.
Vishal Sharma Answered question October 20, 2020
1 min read
So, Here the basic code through which you can create a structure for a node in a Singly linked list using python.
Class Node: def __init__(self,data): self.data = data self.next = None
In this code, we have used constructor(__init__) to automatically assign the value of pass data value to data pointer and the pointing out next pointer to none.
For example,
new_node = Node(4)
It means that new_node.data will be equal to 4 and new_node.next will be equal to None.
Vishal Sharma Answered question October 20, 2020