Glossary
Glossary of terms
Glossary of terms
In the glossary there are words and their explanation in simple english
Browse the glossary using this index
Special | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | ALL
I |
---|
IndentationIndentation is the change of the number of spaces in front of one or more lines of code. When you indent one or more lines you create a block of code which executed in an if or a loop command. All indented lines have to be equally indented. It is common to use 4 spaces to indent code. | ||
IterationRepeated execution of a set of statements is called iteration. Because iteration is so common, Python provides several language features to make it easier. The for and the while commands use the iteration procedure | ||