Answers for "how to split a list in 2 parts in python"

10

how to split a string in python with multiple delimiters

>>> a='Beautiful, is; better*thannugly'
>>> import re
>>> re.split('; |, |*|n',a)
['Beautiful', 'is', 'better', 'than', 'ugly']
Posted by: Guest on June-09-2020
0

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)
    ]
Posted by: Guest on May-02-2020

Code answers related to "how to split a list in 2 parts in python"

Python Answers by Framework

Browse Popular Code Answers by Language