This question is about getting the string join method to work.
This code, from what I can see of python 3 documentation, should work:
str = "-";
seq = ("a", "b", "c"); # This is sequence of strings.
print str.join( seq );
But it's generating a syntax error for me:
File "b.py", line 5
print str.join( seq );
^
SyntaxError: invalid syntax
What am I missing?