我为什么会得到:“'NoneType'对象显然没有数据,却没有属性'data''?

时间:2019-12-01 17:22:06

标签: python attributes nonetype

我想问一下您是否可以通过以下代码帮助我

<ipython-input-3-fb43b8801254> in findString(self, st)
     56                 print(ptr.data)
     57                 print(st[x])
---> 58                 while ptr.data != st[x]:
     59                     if st[x]>= ptr.data:
     60                         ptr = ptr.right

AttributeError: 'NoneType' object has no attribute 'data'

它说没有属性数据,但是有。即使当我在上面两行打印它的时候,也给了我价值。...我在python和Jupiter笔记本中编写此代码。 ptr是指向二叉树的字符串节点的指针。

0 个答案:

没有答案