I have some strings with 3 elements, such as '010','101'... I'm trying to assign the elements of those strings to some variables, like a,b,c. I could do that through a,b,c = "0 1 0".split(). However, if there's no spacing in my string, how can I assign those values?