[Tutor] Output of list

Ricardo Aráoz ricaraoz at gmail.com
Sun Dec 23 01:47:41 CET 2007


Emil wrote:
> hey
> 
> I want to be capable of converting a string into a list where all the items, in  the list, have a fixed length not equal to 1 e.g i have k = 'abcdefgh' and I want the fixed length for all the the items to be 2 then the list would look like ['ab', 'cd', 'ef, 'gh']. How do i do this?
> 
> 

Also : [''.join(i) for i in zip(k[::2], k[1::2])]


More information about the Tutor mailing list