Parse a string into a list of integers
For example, the string “1,2,3,4” will be parsed to [1, 2, 3, 4].
text (str) – String to parse
Parsed integer list
List[int]