python3.10后Iterable无法导入
ImportError: cannot import name 'Iterable' from 'collections'报错解决方案
try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable
except ImportError:
ImportError: cannot import name 'Iterable' from 'collections'报错解决方案
try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable
except ImportError: