I've been utilizing string.join() method in python 2 however it seems like it has been eliminated in python 3. What is the comparable/equivalent method in python 3?
string.join() method let me consolidate multiple strings along with a string in the middle of each other string. For instance, string.join(("a", "b", "c"), ".") would result "a.b.c".