join on map object with Python 3.5.2 IDE
Is join should not be used for map objects?
Is join should not be used for list created by map?
Python 3.5.2 (v3.5.2:4def2a2901a5, Jun 25 2016, 22:01:18) [MSC v.1900 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> a = map(lambda x:x[1], [('11', '22'), ('22', '33'), ('33', '44')])
>>> list(a)
['22', '33', '44']
>>> '.'.join(a)
''
>>> ''.join(list(a))
''
>>> ''.join(['22', '33', '44'])
'223344'
>>>