python迭代器引用问题

问题遇到的现象和发生背景

学习迭代器引用

问题相关代码,请勿粘贴截图
from collections import Iterable

运行结果及报错内容

ImportError: cannot import name 'Iterable' from 'collections' (C:\Users\alien\AppData\Local\Programs\Python\Python310\lib\collections_init_.py)

我的解答思路和尝试过的方法

试着在setting 中把collections 、Iterable都重新载入了,一直报错这个。

我想要达到的结果

正常使用迭代器

collections里没有这个模块或函数

x = iter([6, 2, 3, ])

print(next(x))
print(next(x))
print(next(x))
print(next(x))

'''--result
6
2
3
Traceback (most recent call last):
  File "C:\Users\Administrator\Desktop\PyTest\test13.py", line 12, in <module>
    print(next(x))
StopIteration
Process terminated with an exit code of 1


'''