3 lines
143 B
Python
3 lines
143 B
Python
color = ['Red', 'Green', 'White', 'Black', 'Pink', 'Yellow']
|
|
color = [x for (i,x) in enumerate(color) if i not in (0,4,5)]
|
|
print(color) |