11.07.2015 Views

Python - ACE home page

Python - ACE home page

Python - ACE home page

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Generator Functions/Expressions:A Convenient Shortcut to Building Iteratorsdef squares(n):for i in range(n):yield i*iEquivalent generator expression:>>> (i * i for i in range(n))>>> for i in squares(5):... print(i, end = ‘ ‘)0 1 4 9 16>>> s = squares(5)>>> next(s) => 0>>> next(s) => 1>>> next(s) => 4Lecture 1241

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!