python turn an array of strings into int code example
Example: convert string array to integer python
desired_array = [int(numeric_string) for numeric_string in current_array]
desired_array = [int(numeric_string) for numeric_string in current_array]