(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/break.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/simple.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/import.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/genindex.html| ]]
|
Previous: 6.9 The break statement Up: 6. Simple statements Next: 6.11 The import statement
6.10 The continue statement
continue_stmt: "continue"
continue may only occur syntactically nested in a for or while loop, but not nested in a function or class definition or try statement within that loop.6.1It continues with the next cycle of the nearest enclosing loop.
- ... loop.6.1
- It may occur within an except or else clause. The restriction on occurring in the try clause is implementor's laziness and will eventually be lifted.
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/break.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/simple.html| ]]
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/import.html| ]]
|
Python Reference Manual
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/contents.html| ]]
|
|
[[yurttas/PL/SL/python/docs/core-python-programming/doc/20/ref/genindex.html| ]]
|
Previous: 6.9 The break statement Up: 6. Simple statements Next: 6.11 The import statement
See About this document... for information on suggesting changes.