「python」whileループのサンプル 2014年7月5日2021年7月26日書式 while 条件式: サンプルコード i = 8 while i < 12: print(i) i += 1 結果 8 9 10 11 関連投稿: 「Python入門」pop()でキーを指定して要素を削除するサンプル 「Python入門」enumerate関数の使い方 「Python入門」readline()で1行を文字列として読み込むサンプル 「Python」strftime()で日時を指定フォーマットに変換するサンプル PythonPosted by arkgame