AttributeError: 'Graph' object has no attribute 'clear_edges'
时间: 2024-05-22 09:09:19 浏览: 154
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
AttributeError: 'Graph' object has no attribute 'clear_edges' 这个错误通常表示你正在使用了一个 Graph 对象,但是该对象并没有 clear_edges 方法。这可能是因为你正在使用的版本的 Graph 对象中没有定义此方法。
如果你想要清空图的所有边,可以考虑使用其他方法,如 remove_edge,或者直接创建一个新的 Graph 对象。
阅读全文