Suppose I have a list of strings that look like:
strings_list = ["a=2,b=3,c=14","a=1,b=4,c=0","a=1,b=80,c=3"]
and I want to iterate over these strings and read off the values of the 'b' parameter. How do I do this? Could you help me filling in the line I wrote as a comment
b_array = []
For s in strings_list:
# [read off b parameter as a number, call it b_value]
b_array.append(b_value)