Answers for "python change type of elements in list"

1

python change type of elements in list

list(map(int, ['1','2','3'])) # => [1,2,3]
Posted by: Guest on February-09-2021

Code answers related to "python change type of elements in list"

Code answers related to "Dart"

Browse Popular Code Answers by Language