Python のタプルをリストにするときは list をつかいます。
list
x = (1, 2, 3) y = list(x) print(y) # [1, 2, 3] print(type(y)) # <class 'list'>