Linked List Node in Python is another important aspect to learn when it comes to doing programming in Python. Learn more here.
Write a simple Linked List Node in python
A linked list is either:
the empty list, represented by None, or
a node that contains a cargo object and a reference to a linked list.
! /usr/bin/env python
class Node:
def init(self, cargo=None, next=None):
self.car = cargo
self.cdr = next
def str(self):
return str(self.car)
def display(lst):
if lst:
w("%s " % lst)
display(lst.cdr)
else:
w("nil\n")
Must Read Python Interview Questions
200+ Python Tutorials With Coding Examples
Other Python Tutorials
- What is Python?
- Python Advantages
- Python For Beginners
- Python For Machine Learning
- Machine Learning For Beginners
- 130+ Python Projects With Source Code On GitHub