Python 【Python】ループ処理の基本 処理の繰り返しに使うループ処理の基本。 whileループ 1から5までを表示。 i = 1while i <= 5: print(i) i += 1print("Over!") 結果 123... 2019.03.03 Python