Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 26th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. python class initialization
  2. class node:
  3.     left = None
  4.     right= None
  5.     def __init__(self, data):
  6.         self.data = data
  7.  
  8.  
  9. class node:
  10.     def __init__(self, data):
  11.         self.data = data
  12.         self.left = None
  13.         self.right= None