Im trying to split
dimensions = "M 0 0 C 65 1 130 1 194.6875 0 C 195 17 195 33 194.6875 50 C 130 49 65 49 0 50 C 0 33 0 17 0 0 z"
into list form where if I wanted to get 194.6875 I could do
print(dimensions[8])
Im having trouble converting it to a list since there are multiple types.