How can I iterate through a string list of heights and convert the values into centimeters? The heights are formatted like so: ['5\' 11"', '6\' 1"', '6\' 3"']
I understand that I will have to slice the values for feet and inches and cast them as integers, but I don't understand how to slice the values out of the list. For example, if I used height[0] I would return the string 5' 11". How can I simply return the 5 and 11 and iterate through the whole list?