1# string with list of numbers
2strOne = '656217, 656228'
3
4# converting strOne to a list of strings
5# then iterating over it converting each string to an integer
6lstOutput = [int(i) for i in strOne.split(',')]
7
8# printing list to view values in a list without quotes
9print(lstOutput)