Convert all strings in a list to integers
How do I convert all strings in a list to integers?
['1', '2', '3'] ⟶ [1, 2, 3]
← Назад к списку