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

Method evaluate

example_code/item_049.py:128–131  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

126 self.right = right
127
128 def evaluate(self):
129 left = self.left.evaluate()
130 right = self.right.evaluate()
131 return left * right
132
133
134print("Example 9")

Callers

nothing calls this directly

Calls 1

evaluateMethod · 0.45

Tested by

no test coverage detected