how to split a string every 3 characters python code example
Example 1: split string into array every n characters python
string = '1234567890'
n = 2
split_string = [string[i:i+n] for i in range(0, len(string), n)]
Example 2: 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']
Example 3: python split every character in string
def split(word):
return [char for char in word]
Example 4: python convert strings to chunks
s = '1234567890'
o = []
while s:
o.append(s[:2])
s = s[2:]