Answers for "split string in chunks python"

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
1

python split dict into chunks

# Since the dictionary is so big, it would be better to keep
# all the items involved to be just iterators and generators, like this

from itertools import islice

def chunks(data, SIZE=10000):
    it = iter(data)
    for i in range(0, len(data), SIZE):
        yield {k:data[k] for k in islice(it, SIZE)}
        
# Sample run:
for item in chunks({i:i for i in range(10)}, 3):
    print item
    
# Output
# {0: 0, 1: 1, 2: 2}
# {3: 3, 4: 4, 5: 5}
# {8: 8, 6: 6, 7: 7}
# {9: 9}
Posted by: Guest on July-16-2020
2

split string by length python

>>> x = "qwertyui"
>>> chunks, chunk_size = len(x), len(x)/4
>>> [ x[i:i+chunk_size] for i in range(0, chunks, chunk_size) ]
['qw', 'er', 'ty', 'ui']
Posted by: Guest on April-25-2020
0

python convert strings to chunks

s = '1234567890'
o = []
while s:
    o.append(s[:2])
    s = s[2:]
Posted by: Guest on May-20-2020

Code answers related to "split string in chunks python"

Python Answers by Framework

Browse Popular Code Answers by Language