Given the following list:
a = [[1.0, 1.2, 1.4], [2.0, 2.2], 5.0]
How to I get:
s = '1.0 1.2 1.4 2.0 2.2 5.0
I can't seem to be able to build something out of join(), map() or list comprehensions that doesn't fail due to the non-iterable last member.