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