Displaying from an array

Python Mode version using 3 types of generator: :snake:

  1. countdownYield() -> Function generator via yield keyword
  2. countdownComprehension() -> Function which returns a comprehension generator made by using xrange().
  3. countdownIterRange() -> Function which returns an iterator generator made by passing xrange() to iter().