「Python」break文のサンプル 2014年7月30日2021年2月25日書式 if(条件式) break 使用例 n = 1 while n < 7: print(n) if (n == 3): break n += 1 結果 1 2 3 PythonPosted by arkgame