python split list in 3 code example
Example 1: split list in 3 part
def even_divide(lst, num_piece=4):
return [
[lst[i] for i in range(len(lst)) if (i % num_piece) == r]
for r in range(num_piece)
]
Example 2: python split list
string = 'this is a python string'
wordList = string.split(' ')