組み込み関数 iter() 使い方 iter = iter( obj ) objをイテレータにして返します list1= iter1=iter(list1) for i in iter1: print(i) #結果 1 3 5 li... 組み込み関数