Answers for "python make list of string to list of number"

2

number to list in python

# Declare a number
a = 12345
#Number to list
a_list = [int(x) for x in str(a)]
Posted by: Guest on April-26-2020
7

python convert list of strings to list of integers

# Basic syntax:
list_of_ints = [int(i) for i in list_of_strings]

# Example usage with list comprehension:
list_of_strings = ['2', '3', '47']
list_of_ints = [int(i) for i in list_of_strings]
print(list_of_ints)
--> [2, 3, 47]
Posted by: Guest on April-28-2021

Code answers related to "python make list of string to list of number"

Python Answers by Framework

Browse Popular Code Answers by Language