For questions on how to convert string to integer array:
Example: python string: a="1,23,43,55"
array=['1','23','43','55']
A simple python script to convert an array of numbers input in the form of string seperated by ',' into a real array of integers.