[Solved] Extracting a determined value from a list
[ad_1] You cannot perform a split directly on the list, you can only perform a split on a string (since the list is already split). So iterate over your list of strings and split each of them. I will shorten the code to make it more readable, just replace it with your list. strings = … Read more