I've code this code in Python:
if type(data).__name__=='list':
print type(data).__name__
print ",".join(data)
And it give me this error:
print ",".join(data)
exceptions.TypeError: sequence item 0: expected string, list found
How's that possible?!?
Thanks in advance for anyhelp.