0
Q:

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']
3

New to Communities?

Join the community