プログラミング Python for 1000Python 2023年10月07日 0 1.概要0~5までを表示する例です2.サンプル# -*- coding: utf-8 -*-list = range(6)for n in list: print(n)3.実行結果012345と表示されました。 PR