JOIN - Vermischen von Strings


[stepken@home python]$ python2.2
Python 2.2a1 (#1, Jul 26 2001, 05:00:49)
[GCC 2.96 20000731 (Red Hat Linux 7.1 2.96-81)] on linux2
Type "copyright", "credits" or "license" for more information.
>>> "-".join("Works with all sequences")
'W-o-r-k-s- -w-i-t-h- -a-l-l- -s-e-q-u-e-n-c-e-s'
>>>
[stepken@home python]$