So basically I want to convert a string which has multiple numbers to seperate integers in a list.
lst = []
s = '12 14 17'
Basically what I am trying to do is get the lst to be lst = [12,14,17] but I am having difficulty doing this since the string is one whole string and not one string per number.