# Forme habituelle t = [0]*100 for i in range(100): t[i] = 3*i+1 # Notation par compréhension t = [3*i+1 for i in range 100]