How to create a list with specific items from other list by indexes in Python

2 Answers

0 votes
x = 1
y = 4
z = 5

a_list = [1, 2, 3, 5, 8, 9, 0]

part_list = [a_list[i] for i in [x, y, z]]

print(part_list)


'''
run:

[2, 8, 9]

'''

 



answered Nov 3, 2017 by avibootz
0 votes
indexes = [1, 4, 6]

a_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]

part_list = [a_list[i] for i in indexes]

print(part_list)


'''
run:

[2, 5, 7]

'''

 



answered Nov 3, 2017 by avibootz
...