MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / Node

Class Node

example_code/item_009.py:225–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223
224print("Example 15")
225class Node:
226 def __init__(self, value, left=None, right=None):
227 self.value = value
228 self.left = left
229 self.right = right
230
231
232print("Example 16")

Callers 1

item_009.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected