comment taper un dict dans Python
from typing import Dict
_dict: Dict[key_type, value_type] = {}
# Ex: Dict[int, str]
Phred7
from typing import Dict
_dict: Dict[key_type, value_type] = {}
# Ex: Dict[int, str]