組み込み関数 list() list1 = list( obj ) objをlist型変換して返します tuple1 = (1,2,3) list1 = list(tuple1) print(list1) #結果 tuple型をlist型に変換し... 組み込み関数