Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
list of indices solution in Creative category for Easy Unpack by Lemmi
def easy_unpack(elements):
return tuple(elements[idx] for idx in [0, 2, ~1])
Nov. 3, 2017
Comments: