Answer:
Check the explanation
Explanation:
to complete the function that is to return the indexth value from the comma-separated values as an integer.
and since we've been hinted to consider using the split() method and the int() function.
we'll have to execute the below function which you can also see the screenshot in the attached image.
def get_nth_int_from_CSV(CSV_string,index):
l = CSV_string.split(',')
n = int(l[index])
return n
print(get_nth_int_from_CSV('111,22,3333,4',2))