Answers for "python split text every n characters"

3

how ot split a string every fourth eter

>>> 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 March-26-2020
0

split string into groups of 3 chars python

from textwrap import wrap
print(wrap('string', 2))
# splits 'string' into a list of 2 char strings
Posted by: Guest on February-04-2021

Code answers related to "python split text every n characters"

Python Answers by Framework

Browse Popular Code Answers by Language