René's URL Explorer Experiment


Title: Iterators and Generators — Programming in Python 7.0 documentation

direct link

Domain: uwpce-pythoncert.github.io

Links:

https://uwpce-pythoncert.github.io/ProgrammingInPython/index.html
1. Setting up your Environmenthttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/01-setting_up/index.html
2. Basic Pythonhttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/02-basic_python/index.html
3. Booleans and Recursionhttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/03-recursion_booleans/index.html
4. Sequences and Iterationhttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/04-sequences_iteration/index.html
5. Basic Text Handlinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/05-text_handling/index.html
6. Exception Handlinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/06-exceptions/index.html
7. Unit Testinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/07-unit_testing/index.html
8. Dictionaries and Setshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/08-dicts_sets/index.html
9. File Handlinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/09-files/index.html
10. Modules and Packageshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/10-modules_packages/index.html
11. Advanced Argument Passinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/11-argument_passing/index.html
12. Comprehensionshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/12-comprehensions/index.html
13. Intro to Object Oriented Programinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/13-intro_oo/index.html
14. Properties and Magic Methodshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/14-magic_methods/index.html
15. Subclassing and Inheritancehttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/15-subclassing/index.html
16. Multiple Inheritancehttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/16-multiple_inheritance/index.html
17. Introduction to Functional Programminghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/17-functional_programming/index.html
18. Advanced Testinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/18-advanced_testing/index.html
19. Extra Topicshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/99-extras/index.html
Coding Style and Lintinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Pep8.html
Code Reviewshttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/CodeReviews.html
Persistence and Serializationhttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/PersistanceAndSerialization.html
Unicode in Pythonhttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Unicode.html
Iterators and Generatorshttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html
Decoratorshttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Decorators.html
Mailroom – Decoratoring ithttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/mailroom/mailroom-decorator.html
Context Managershttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/ContextManagers.html
A Couple Handy Context Managershttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/context-managers-exercise.html
Metaprogramminghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/MetaProgramming.html
Mailroom – metaprogramming it!https://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/mailroom/mailroom-meta.html
Logging and the logging modulehttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Logging.html
Debugginghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Debugging.html
No SQL Databaseshttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/NoSQL.html
Graph Databaseshttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/GraphDatabases.html
Concurrent Programminghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Concurrency.html
Asychronous Programminghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Async.html
Notes on Coroutineshttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Coroutines.html
Threading and multiprocessinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/ThreadingMultiprocessing.html
Threaded Web Scraperhttps://uwpce-pythoncert.github.io/ProgrammingInPython/exercises/threaded_downloader.html
Performance and Profilinghttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Profiling.html
Programming in Pythonhttps://uwpce-pythoncert.github.io/ProgrammingInPython/index.html
https://uwpce-pythoncert.github.io/ProgrammingInPython/index.html
19. Extra Topicshttps://uwpce-pythoncert.github.io/ProgrammingInPython/topics/99-extras/index.html
View page sourcehttps://uwpce-pythoncert.github.io/ProgrammingInPython/_sources/modules/IteratorsAndGenerators.rst.txt
Previoushttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Unicode.html
Next https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Decorators.html
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#iterators-and-generators
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#a-note-about-python-history
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#python-2
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#python3
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#iterators-and-iterables
https://docs.python.org/3/library/stdtypes.html#iterator-typeshttps://docs.python.org/3/library/stdtypes.html#iterator-types
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#iterables
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#iter
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#list-as-an-iterator
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#using-iterators-when-you-can
http://codekata.com/kata/kata14-tom-swift-under-the-milkwood/http://codekata.com/kata/kata14-tom-swift-under-the-milkwood/
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#the-iterator-protocol
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#making-an-iterator
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#what-does-for-do
my_for.pyhttps://uwpce-pythoncert.github.io/ProgrammingInPython/_downloads/6f19c1a8554518241fa56859fad09ec8/my_for.py
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#itertools
http://docs.python.org/3/library/itertools.htmlhttp://docs.python.org/3/library/itertools.html
https://pymotw.com/3/itertools/index.htmlhttps://pymotw.com/3/itertools/index.html
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#is-an-iterator-a-type
https://docs.python.org/3/glossary.html#term-iteratorhttps://docs.python.org/3/glossary.html#term-iterator
http://treyhunner.com/2016/12/python-iterator-protocol-how-for-loops-work/http://treyhunner.com/2016/12/python-iterator-protocol-how-for-loops-work/
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#lab
iterator_1.pyhttps://uwpce-pythoncert.github.io/ProgrammingInPython/_downloads/856962444f5328c5d5739a3d7d67384e/iterator_1.py
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#generators
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#yield
https://github.com/svn2github/wxPython/blob/master/3rdParty/FloatCanvas/floatcanvas/FloatCanvas.py#L100https://github.com/svn2github/wxPython/blob/master/3rdParty/FloatCanvas/floatcanvas/FloatCanvas.py#L100
http://www.learningpython.com/2009/02/23/iterators-iterables-and-generators-oh-my/http://www.learningpython.com/2009/02/23/iterators-iterables-and-generators-oh-my/
yield_example.pyhttps://uwpce-pythoncert.github.io/ProgrammingInPython/_downloads/429df84ad67b90296d8e26a683f2ae13/yield_example.py
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#generator-comprehensions
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#other-uses-for-yield
https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/IteratorsAndGenerators.html#id1
test_generator.pyhttps://uwpce-pythoncert.github.io/ProgrammingInPython/_downloads/39ca0e08e448d94dc2220876d643da86/test_generator.py
Previoushttps://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Unicode.html
Next https://uwpce-pythoncert.github.io/ProgrammingInPython/modules/Decorators.html
Sphinxhttps://www.sphinx-doc.org/
themehttps://github.com/readthedocs/sphinx_rtd_theme
Read the Docshttps://readthedocs.org

Viewport: width=device-width, initial-scale=1.0


URLs of crawlers that visited me.