less loop exercises

One of the exercises in the spirit of:

lst = [1, 2, 3]
new_lst = []
for element in lst:
    new_lst.append(doSomething(element))

could go. We are repeating the same scheme over and over again. While it is definitely an extremely important construct, I guess one example less would also do...