Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Seek and destroy solution in Clear category for Remove All After by veky
def remove_all_after(L, x):
try: return L[:1+L.index(x)]
except ValueError: return L
Jan. 11, 2020
Comments: