Comment diviser une chaîne en un dictionnaire en python
dictionary = { index: sample for index, sample in enumerate(string.split(separator)) }
HAL's therapist
dictionary = { index: sample for index, sample in enumerate(string.split(separator)) }