For Loop¶
The for
loop can iterate over the elements of a sequence. An object that
supports iteration is called Iterable
. All sequences are iterables.
for element in iterable:
CODE_BLOCK
The for
loop can iterate over the elements of a sequence. An object that
supports iteration is called Iterable
. All sequences are iterables.
for element in iterable:
CODE_BLOCK