# arr = [elements] # new_arr = arr[condition] # new_arr = [lements satisfying condition] arr = [3, 6, 5, 9, 4, 12, 1] new_arr = arr[arr%2 == 0] new_arr = [6, 4, 12]