t252.py 71 B

1234567
  1. x = [0]*10
  2. for i in range(10):
  3. x[i] += i
  4. x[i] += i*2
  5. print x