I have a string that I have converted to a list but I am unable to coerce some of the list values to int.
msg = "Meet me at the Ritz Carlton at 9 o'clock, don't be late!"
for i in range(len(msg)):
lst.append(msg[i]) #converted string msg to list called lst
print(lst)```
If you want to store all the int elements of your string in your
lstarray, with your code the simplest way to do that :