简体   繁体   中英

How can i create a list (new) from an existing list where items of list(new) will be list in python

I have a list like the following:

original_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g'] 

And my desired output is:

result = [['a', 'b'], ['c', 'd'], ['e', 'f'], ['g']]

Here, the items of 'result' will be each one list of two items from the original_list. so if the total no of items in original_list is 8 then it will give like the following:

original_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'] 

And my desired output is:

result = [['a', 'b'], ['c', 'd'], ['e', 'f'], ['g', 'h']]

I tried to solve that using 2 dimensional matrix but its not working as the elements of the original_list is sometimes even and odd.

any suggestion how can i follow?

Is this what you want?

original_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
result = []

for i in range(0, len(original_list), 2):
    result.append(original_list[i:i+2])
def split_array(original_list,split_size):

    result = []

    for i in range(0, len(original_list), split_size):
        result.append(original_list[i:i+split_size])

    return result
original_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
print(split_array(original_list,2))

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM