cara mengetik dikt dalam python

from typing import Dict
_dict: Dict[key_type, value_type] = {}
 # Ex: Dict[int, str]
Phred7