line.split('\t') python method code example
Example 1: 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']
Example 2: how to split a string in python
sample_str = "Help developers by donating!"
txt.split(' ')