「Python試用録(6)」
%6: 「Python試用録(6)」 「WILDの処理系」作成のための「 断片的備忘録 」です. /*背景色は(茶: 編集・確認中; 灰色: 確認済; 緑: 非慣用記法; 白色: 初期化済)*/ /*緑は定義行のみ.他ではシアン*/ %61: [@IT_10]/*「for文による繰り返し処理 (1/3)」*/ `▼ -------------------------------------------------------------------------------- (0)In[5]: for num in range(5): print(num) print() (1)参考資料 ①for文 https://docs.python.org/ja/3/reference/compound_stmts.html#the-for-statement ②while文 https://docs.python.org/ja/3/reference/compound_stmts.html#the-while-statement ③break文 https://docs.python.org/ja/3/reference/simple_stmts.html#the-break-statement ④continue文 https://docs.python.org/ja/3/reference/simple_stmts.html#the-continue-statement ④range関数 https://docs.python.org/ja/3/library/functions.html#func-range (2)「WILD」のプログラムは非決定性構文規則の実装例: ①「In[5]」のプログラム /*「Courier」*/ は「W7」では `< $num = 5 `> `&.{ `loop: num .= `$ - 1 `.. 'terminated' `} ② 「loo...