Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Replace First by Cyrus490
def replace_first(items):
return items[1:] + [items[0]] if items else []
Oct. 23, 2020
Comments: