Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Making Python do it solution in Clear category for Easy Unpack by StefanPochmann
def easy_unpack(elements):
first, _, third, *_ = *_, second_to_the_last, _ = elements
return first, third, second_to_the_last
Nov. 2, 2017
Comments: