Answers for "python split string size"

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

how split string in python by size

>>> 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 March-08-2021
0

python split string size

some_string="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
x = 3 
res = [some_string[y - x:y] for y in range(x, len(some_string) + x, x)]
print(res)
Posted by: Guest on May-07-2021

Python Answers by Framework

Browse Popular Code Answers by Language