Python - converting a string of numbers into a list of int
I have a string of numbers, something like:
example_string = '0, 0, 0, 11, 0, 0, 0, 0, 0, 19, 0, 9, 0, 0, 0, 0, 0, 0, 11'
I would like to convert this into a list:
example_list = [0, 0, 0, 11, 0, ..