Comment modifier le type de valeurs d'une liste de STR à Object Python

>>> list_a = ['20.3', '35', '10', '6.74', '323']
>>> list_a = map(float, list_a)
>>> list_a[0]*2
40.6
Selfish Seal