题目:输入一棵二叉树,求该树的深度。
1.Python if not
①“if not x”
②“if x is None”
③“if not x is None”→“if not (x is None)”
它们的结果要是True,才往下进行哦!
在Python中,None、False、0、空字符串“”、空列表[]、空元组()都相当于False。
2.Python self
①self在方法处需要定义,在调用时会自动传入
②self总是指调用时的类的实例
题目:输入一棵二叉树,求该树的深度。
①“if not x”
②“if x is None”
③“if not x is None”→“if not (x is None)”
它们的结果要是True,才往下进行哦!
在Python中,None、False、0、空字符串“”、空列表[]、空元组()都相当于False。
①self在方法处需要定义,在调用时会自动传入
②self总是指调用时的类的实例