SyntaxFix
Write A Post
Hire A Developer
Questions
str.join() works fine in Python 3, you just need to get the order of the arguments correct
str.join()
>>> str.join('.', ('a', 'b', 'c')) 'a.b.c'