René's URL Explorer Experiment


Title: 4. More Control Flow Tools — Python 2.7.18 documentation

direct link

Domain: docs.python.org

Links:

no longer supportedhttps://devguide.python.org/devcycle/#end-of-life-branches
Python documentation for the current stable releasehttps://docs.python.org/3/tutorial/controlflow.html
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/tutorial/datastructures.html
previoushttps://docs.python.org/2/tutorial/introduction.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
The Python Tutorialhttps://docs.python.org/2/tutorial/index.html
https://docs.python.org/2/tutorial/controlflow.html#more-control-flow-tools
whilehttps://docs.python.org/2/reference/compound_stmts.html#while
ifhttps://docs.python.org/2/reference/compound_stmts.html#if
https://docs.python.org/2/tutorial/controlflow.html#if-statements
ifhttps://docs.python.org/2/reference/compound_stmts.html#if
elifhttps://docs.python.org/2/reference/compound_stmts.html#elif
elsehttps://docs.python.org/2/reference/compound_stmts.html#else
elifhttps://docs.python.org/2/reference/compound_stmts.html#elif
ifhttps://docs.python.org/2/reference/compound_stmts.html#if
elifhttps://docs.python.org/2/reference/compound_stmts.html#elif
elifhttps://docs.python.org/2/reference/compound_stmts.html#elif
forhttps://docs.python.org/2/reference/compound_stmts.html#for
https://docs.python.org/2/tutorial/controlflow.html#for-statements
forhttps://docs.python.org/2/reference/compound_stmts.html#for
forhttps://docs.python.org/2/reference/compound_stmts.html#for
range()https://docs.python.org/2/library/functions.html#range
https://docs.python.org/2/tutorial/controlflow.html#the-range-function
range()https://docs.python.org/2/library/functions.html#range
range()https://docs.python.org/2/library/functions.html#range
len()https://docs.python.org/2/library/functions.html#len
enumerate()https://docs.python.org/2/library/functions.html#enumerate
Looping Techniqueshttps://docs.python.org/2/tutorial/datastructures.html#tut-loopidioms
breakhttps://docs.python.org/2/reference/simple_stmts.html#break
continuehttps://docs.python.org/2/reference/simple_stmts.html#continue
elsehttps://docs.python.org/2/reference/compound_stmts.html#else
https://docs.python.org/2/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops
breakhttps://docs.python.org/2/reference/simple_stmts.html#break
forhttps://docs.python.org/2/reference/compound_stmts.html#for
whilehttps://docs.python.org/2/reference/compound_stmts.html#while
forhttps://docs.python.org/2/reference/compound_stmts.html#for
whilehttps://docs.python.org/2/reference/compound_stmts.html#while
breakhttps://docs.python.org/2/reference/simple_stmts.html#break
forhttps://docs.python.org/2/reference/compound_stmts.html#for
ifhttps://docs.python.org/2/reference/compound_stmts.html#if
tryhttps://docs.python.org/2/reference/compound_stmts.html#try
ifhttps://docs.python.org/2/reference/compound_stmts.html#if
tryhttps://docs.python.org/2/reference/compound_stmts.html#try
tryhttps://docs.python.org/2/reference/compound_stmts.html#try
Handling Exceptionshttps://docs.python.org/2/tutorial/errors.html#tut-handling
continuehttps://docs.python.org/2/reference/simple_stmts.html#continue
passhttps://docs.python.org/2/reference/simple_stmts.html#pass
https://docs.python.org/2/tutorial/controlflow.html#pass-statements
passhttps://docs.python.org/2/reference/simple_stmts.html#pass
passhttps://docs.python.org/2/reference/simple_stmts.html#pass
passhttps://docs.python.org/2/reference/simple_stmts.html#pass
https://docs.python.org/2/tutorial/controlflow.html#defining-functions
defhttps://docs.python.org/2/reference/compound_stmts.html#def
Documentation Stringshttps://docs.python.org/2/tutorial/controlflow.html#tut-docstrings
globalhttps://docs.python.org/2/reference/simple_stmts.html#global
1https://docs.python.org/2/tutorial/controlflow.html#id2
returnhttps://docs.python.org/2/reference/simple_stmts.html#return
printhttps://docs.python.org/2/reference/simple_stmts.html#print
returnhttps://docs.python.org/2/reference/simple_stmts.html#return
returnhttps://docs.python.org/2/reference/simple_stmts.html#return
Classeshttps://docs.python.org/2/tutorial/classes.html#tut-classes
https://docs.python.org/2/tutorial/controlflow.html#more-on-defining-functions
https://docs.python.org/2/tutorial/controlflow.html#default-argument-values
inhttps://docs.python.org/2/reference/expressions.html#in
https://docs.python.org/2/tutorial/controlflow.html#keyword-arguments
keyword argumentshttps://docs.python.org/2/glossary.html#term-keyword-argument
Mapping Types — dicthttps://docs.python.org/2/library/stdtypes.html#typesmapping
https://docs.python.org/2/tutorial/controlflow.html#arbitrary-argument-lists
Tuples and Sequenceshttps://docs.python.org/2/tutorial/datastructures.html#tut-tuples
https://docs.python.org/2/tutorial/controlflow.html#unpacking-argument-lists
range()https://docs.python.org/2/library/functions.html#range
https://docs.python.org/2/tutorial/controlflow.html#lambda-expressions
lambdahttps://docs.python.org/2/reference/expressions.html#lambda
https://docs.python.org/2/tutorial/controlflow.html#documentation-strings
https://docs.python.org/2/tutorial/controlflow.html#intermezzo-coding-style
PEP 8https://www.python.org/dev/peps/pep-0008
A First Look at Classeshttps://docs.python.org/2/tutorial/classes.html#tut-firstclasses
1https://docs.python.org/2/tutorial/controlflow.html#id1
Table of Contentshttps://docs.python.org/2/contents.html
4. More Control Flow Toolshttps://docs.python.org/2/tutorial/controlflow.html
4.1. if Statementshttps://docs.python.org/2/tutorial/controlflow.html#if-statements
4.2. for Statementshttps://docs.python.org/2/tutorial/controlflow.html#for-statements
4.3. The range() Functionhttps://docs.python.org/2/tutorial/controlflow.html#the-range-function
4.4. break and continue Statements, and else Clauses on Loopshttps://docs.python.org/2/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops
4.5. pass Statementshttps://docs.python.org/2/tutorial/controlflow.html#pass-statements
4.6. Defining Functionshttps://docs.python.org/2/tutorial/controlflow.html#defining-functions
4.7. More on Defining Functionshttps://docs.python.org/2/tutorial/controlflow.html#more-on-defining-functions
4.7.1. Default Argument Valueshttps://docs.python.org/2/tutorial/controlflow.html#default-argument-values
4.7.2. Keyword Argumentshttps://docs.python.org/2/tutorial/controlflow.html#keyword-arguments
4.7.3. Arbitrary Argument Listshttps://docs.python.org/2/tutorial/controlflow.html#arbitrary-argument-lists
4.7.4. Unpacking Argument Listshttps://docs.python.org/2/tutorial/controlflow.html#unpacking-argument-lists
4.7.5. Lambda Expressionshttps://docs.python.org/2/tutorial/controlflow.html#lambda-expressions
4.7.6. Documentation Stringshttps://docs.python.org/2/tutorial/controlflow.html#documentation-strings
4.8. Intermezzo: Coding Stylehttps://docs.python.org/2/tutorial/controlflow.html#intermezzo-coding-style
3. An Informal Introduction to Pythonhttps://docs.python.org/2/tutorial/introduction.html
5. Data Structureshttps://docs.python.org/2/tutorial/datastructures.html
Show Sourcehttps://docs.python.org/2/_sources/tutorial/controlflow.rst.txt
indexhttps://docs.python.org/2/genindex.html
moduleshttps://docs.python.org/2/py-modindex.html
nexthttps://docs.python.org/2/tutorial/datastructures.html
previoushttps://docs.python.org/2/tutorial/introduction.html
Pythonhttps://www.python.org/
Python 2.7.18 documentationhttps://docs.python.org/2/index.html
The Python Tutorialhttps://docs.python.org/2/tutorial/index.html
Copyrighthttps://docs.python.org/2/copyright.html
Please donate.https://www.python.org/psf/donations/
Found a bughttps://docs.python.org/2/bugs.html
Sphinxhttp://sphinx.pocoo.org/

URLs of crawlers that visited me.