NodePractice2.py

From WLCS
Revision as of 08:49, 18 October 2013 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
class Node:
    def __init__(self):
        self.data = 0
        self.next = None
        
#Draw the memory diagram of the following code
n1 = Node()
n2 = Node()
n2.next = Node()
n1.next = n2.next
n1.data = 2
n2.data = 4