0

String to int problem

Lets say i have a string in python that looks like this: """22 33 44 11 22 43 33 20""" When i use .split("\n) It becomes a list of strings,but when i use .split(" ") for each string it dosnt work,the space stays and lst[0][0] will be 2 and not 22. How i fix it and what is the best way to convert it into a list of lists of integers

3rd Nov 2018, 7:45 AM
gil gil
2 odpowiedzi
+ 1
You can write: numbers = [int(n) for n in string.split()]
3rd Nov 2018, 11:46 AM
HonFu
HonFu - avatar
0
Jay Matthews ,i guess s is each line of the list,split() will give me a list of all the numbers in one line,will it be ["22","33","44"] or ["2","2"," ","3" ....]?
3rd Nov 2018, 8:13 AM
gil gil