Please help me I got stuck in something that seems quite simple. I just want to create list from elements of another list. I can do it this way but cant figure out faster way because my list has around 500 elements and I dont want to write list name 500 times. Example :
testing = [ 'john', 'mark', 'joseph', 'cody', 'bill' , 'dick']
new= [testing [0], testing[3], testing[4]]
gives me what I want, but how can I make it faster. I tried
new = [testing ([0], [3], [4])]
and get 'list' object is not callable