ID EN
Typing

Mapping

Python 3.11

Deprecated alias to collections.abc.Mapping.

Syntax

PYTHON
class typing.Mapping(Collection[KT], Generic[KT, VT_co])

Examples

Example 1
PYTHON
def get_position_in_index(word_list: Mapping[str, int], word: str) -> int:
    return word_list[word]

See Also

collections.abc.Mapping collections.abc.Mapping Generic Alias Type