目標(Objectives)
「二重for文」について理解する。
Understand the “double for statement.”
反復構造(for文)
Understand the “double for statement.”
基本制御構造の復習
Review of basic control structures
基本制御構造とは(再掲載)
What is basic control structure (repetition)
「制御構造」のうち、基本とする3つの構造として「順次構造」「選択構造」「反復構造」が存在します。これらは「基本制御構造」と呼ばれて、次の構造をもっています。
- 「順次構造」…プログラムを書かれた順番で実行します。
- 「選択構造」…条件の成立・不成立によって実行するプログラムを選択します。
- 「反復構造」…条件の成立・不成立によって実行するプログラムを反復します。
Among the “control structures,” there are three basic structures: sequential, selective, and repetitive. These are called “basic control structures” and have the following structure.
- Sequential structure: Programs are executed in the order in which they are written.
- Selective structure: The program is selected to be executed according to whether the condition is satisfied or not.
- Iterative structure: The program to be executed is iterated according to whether the condition is satisfied or not.
「二重for文」の記述とその動き
Double for statement” description and its behavior
「二重for文」の記述
Description of “double for statement
二重の「for文」は次のように記述します。外側の「for文」のブロックに、もうひとつの「for文」が存在する形になります。
A double “for statement” is described as follows. Another “for statement” exists in the outer “for statement” block.
【English translation of captcha】
変数
→The variable
イテラブルオブジェクト
→Iterable objects
ブロック
→Block
「二重for文」の動き
The behavior of “double for statement”
二重の繰り返しでは、外側の繰り返し処理の1ステップ毎に、内側の繰り返し処理が全ステップ行われることになります。
In a double iteration, for each step of the outer iteration, all steps of the inner iteration are performed.
【English translation of captcha】
変数
→The variable
ブロック
→Block
毎年12か月実行されます。
→It runs 12 months each year.
例えば下のプログラムの実行結果や動きは次のようになります。
year_list= [2024,2025,2026]
month_list = [1,2,3,4,5,6,7,8,9,10,11,12]
for this_year in year_list:
print(this_year, "年")
for this_month in month_list:
print(this_month, "月", end=" ")
#↓ここは外側のfor文のブロック内の処理です。
#内側のfor文の処理が全て終わったあと、改行のためにprint()を実行しています。
print()
【English translation of code】
年→year、月→month
ここは外側のfor文のブロック内の処理です。
→This is the processing of the outer for statement block.
内側のfor文の処理が全て終わったあと、改行のためにprint()を実行しています。
→After all steps have been processed, print() is executed for a new line.
実行結果
Execution Result
この実行結果を二重for文のイラストと同様の色分けを行うと次のようになります。
The result of this execution, with color coding similar to the illustration of the double for statement, is shown below.
繰り返し文のネストではマトリックス(行列)を作成することができます。
Nesting of repeating statements allows for the creation of matrices (matrices).
次のようなプログラムでは掛け算の九九一覧を表示することが可能です。
The following program can display a list of multiplication nines.
for left_value in [ 1,2,3,4,5,6,7,8,9 ]:
for right_value in [ 1,2,3,4,5,6,7,8,9 ]:
print(left_value, "✕", right_value, "=", left_value*right_value, end="\t")
print()
実行結果
Execution Result
今回は以上になります。
That’s all for this time.
ブックマークのすすめ
「ほわほわぶろぐ」を常に検索するのが面倒だという方はブックマークをお勧めします。ブックマークの設定は別記事にて掲載しています。