Revision history of "NodeLoop.py"

From WLCS

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 23:20, 17 October 2013Admin (talk | contribs). . (537 bytes) (+537). . (Created page with "<syntaxhighlight lang="Python"> class Node: def __init__(self): self.data = 0 self.next = None n1 = Node() #create and connect several Nodes n1.data = 5...")