Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
224
print(
"Example 15"
)
225
class
Node:
226
def
__init__(self, value, left=None, right=None):
227
self.value = value
228
self.left = left
229
self.right = right
230
231
232
print(
"Example 16"
)
Callers
1
item_009.py
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected