組み込み関数 next() 使い方 class = next( iterator ) イテレータの次の要素を取得します list1= iter1=iter(list1) for i in range(4): print(next(iter1... 組み込み関数