print [x for x in range(1,101) if x%2 == 0]
와후~^ 신기하군요!
Ruby: p (1..100).select { |x| x.even? }
짧네 좋다
Ruby: p (1..100).select { |x| x.even? }
짧네 좋다