python extend怎么用_正确使用extend?
class BTNode(object):"""A node in a binary tree."""def __init__(self, item, left=None, right=None):"""(BTNode, object, BTNode, BTNode) -> NoneTypeInitialize this node to store item and have childre.