Blurbs ansible coffeescript django dvcs erlang es6 hg javascript json lua mercurial peewee postgresql python scope sql sqlalchemy yaml

Stuttering list code pythonerlang

a = [1, 2, 3, 4]
[i for i in a for _ in range(i)]
# [1, 2, 2, 3, 3, 3, 4, 4, 4, 4]
A = [1, 2, 3, 4].
[I || I <- A, _ <- lists:seq(1, I)].
% [1,2,2,3,3,3,4,4,4,4]