Python Change Type d'éléments dans la liste

list(map(int, ['1','2','3'])) # => [1,2,3]
The Biton