in VS Code ImportError: cannot import name ‘Mapping’ from ‘collections’

Solution 1
from collections import Mapping
from collections.abc import Mapping
Solution 2
try:
    from collections.abc import Mapping
except ImportError:
    from collections import Mapping