t549.py 110 B

1234
  1. s = { i*i for i in range(100) if i&1 == 1 }
  2. print s
  3. s2 = { 2*y + x + 1 for x in (0,) for y in (1,) }
  4. print s2