Answers for "list of string to list of ints pyton"

14

convert list of strings to ints python

test_list = ['1', '4', '3', '6', '7'] 

int_list = [int(i) for i in test_list]
Posted by: Guest on July-02-2020
0

python list of integers to list of strings

# Python code to convert list of 
# string into sorted list of integer 
    
# List initialization 
list_int = [1, 12, 15, 21, 131]
    
# mapping 
list_string = map(str, list_int) 
    
# Printing sorted list of integers 
print(list(list_string))
Posted by: Guest on September-15-2021

Code answers related to "list of string to list of ints pyton"

Python Answers by Framework

Browse Popular Code Answers by Language