Answers for "python dividing strings by amount of letters"

1

python dividing strings by amount of letters

>>> line = '1234567890'
>>> n = 2
>>> [line[i:i+n] for i in range(0, len(line), n)]
['12', '34', '56', '78', '90']
Posted by: Guest on June-24-2021

Code answers related to "python dividing strings by amount of letters"

Python Answers by Framework

Browse Popular Code Answers by Language