It isn't necessary to implement a linked list, since Python already has a build-in list data structure.
[CODE=python]
myList = []
myList.append(" this")
myList.append(" is")
myList.append(" the")
myList.append(" list")
for item in myList:
print item
[/CODE]
Leave a comment: