Pythonのfor文を紹介します。
ターミナルでPythonのinteractive mode(対話モード)を起動します。
% python
Python 3.7.7 (default, Mar 10 2020, 15:43:33)
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
<div class="content">
<p>Pythonはループ処理をするにはfor文を使います。</p>
<p>[1,2,3]中にあるリスト要素を出力することが可能です。</p>
</div>
>>> for i in [1,2,3]:
... print(i)
...
1
2
3
>>>
for ….. in …: 文を利用すると[ ]の中にあるリスト要素を準にアクセスすることが可能です。
:の改行後にインデントしないと下記のエラーが発生しますので気をつけましょう。